From de0697a83c6ce50fd03f55ba32be348d185b4edd Mon Sep 17 00:00:00 2001 From: Stacy Harper Date: Fri, 9 Apr 2021 11:18:07 +0200 Subject: [PATCH] Fix sxmo rotate left lisgd doesnt care about negative rotations. Rotating left is 3 rotation rights. Signed-off-by: Stacy Harper Signed-off-by: Maarten van Gompel --- scripts/core/sxmo_rotate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/core/sxmo_rotate.sh b/scripts/core/sxmo_rotate.sh index 0d596fd..630c16b 100755 --- a/scripts/core/sxmo_rotate.sh +++ b/scripts/core/sxmo_rotate.sh @@ -37,7 +37,7 @@ rotleft() { sxmo_keyboard.sh close xrandr -o left applyptrmatrix 0 -1 1 1 0 0 0 0 1 - pidof lisgd && pkill lisgd | sxmo_lisgdstart.sh -o -1 & + pidof lisgd && pkill lisgd | sxmo_lisgdstart.sh -o 3 & exit 0 }