From 818d7d5b170750300542262a58731401c3a87258 Mon Sep 17 00:00:00 2001 From: Miles Alan Date: Sat, 13 Jun 2020 18:53:20 -0500 Subject: [PATCH] Use lisgd orientation -o flag in rotate script --- scripts/core/sxmo_rotate.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/core/sxmo_rotate.sh b/scripts/core/sxmo_rotate.sh index e6be220..2eabfcd 100755 --- a/scripts/core/sxmo_rotate.sh +++ b/scripts/core/sxmo_rotate.sh @@ -15,12 +15,16 @@ isrotated() { rotnormal() { xrandr -o normal applyptrmatrix 0 0 0 0 0 0 0 0 0 + pkill lisgd + lisgd -o 0 & exit 0 } rotright() { xrandr -o right applyptrmatrix 0 1 0 -1 0 1 0 0 1 + pkill lisgd + lisgd -o 1 & exit 0 }