Do not start lisgd if it is not running (e.g. lockscreen)

This commit is contained in:
ivoulis 2020-11-09 17:00:04 +01:00 committed by Maarten van Gompel
parent 96931ce22c
commit 24380603a4

View file

@ -17,8 +17,7 @@ rotnormal() {
pkill "$KEYBOARD"
xrandr -o normal
applyptrmatrix 0 0 0 0 0 0 0 0 0
pkill lisgd
sxmo_lisgdstart.sh -o 0 &
pidof lisgd && pkill lisgd | sxmo_lisgdstart.sh -o 0 &
exit 0
}
@ -26,8 +25,7 @@ rotright() {
pkill "$KEYBOARD"
xrandr -o right
applyptrmatrix 0 1 0 -1 0 1 0 0 1
pkill lisgd
sxmo_lisgdstart.sh -o 1 &
pidof lisgd && pkill lisgd | sxmo_lisgdstart.sh -o 1 &
exit 0
}
@ -35,8 +33,7 @@ rotleft() {
pkill "$KEYBOARD"
xrandr -o left
applyptrmatrix 0 -1 1 1 0 0 0 0 1
pkill lisgd
sxmo_lisgdstart.sh -o -1 &
pidof lisgd && pkill lisgd | sxmo_lisgdstart.sh -o -1 &
exit 0
}