From b80ce9e8726b57e991e033cca727668892aa965d Mon Sep 17 00:00:00 2001 From: Miles Alan Date: Fri, 26 Jun 2020 20:02:24 -0500 Subject: [PATCH] Disable ligsd 1 finger gestures while using foxtrotgps --- scripts/core/sxmo_lisgdonefingercheck.sh | 8 ++++++++ scripts/core/sxmo_lisgdstart.sh | 12 ++++++------ 2 files changed, 14 insertions(+), 6 deletions(-) create mode 100755 scripts/core/sxmo_lisgdonefingercheck.sh diff --git a/scripts/core/sxmo_lisgdonefingercheck.sh b/scripts/core/sxmo_lisgdonefingercheck.sh new file mode 100755 index 0000000..bd63e22 --- /dev/null +++ b/scripts/core/sxmo_lisgdonefingercheck.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env sh +ACTIVEWIN="$(xdotool getactivewindow)" +WMCLASS="$(xprop -id "$ACTIVEWIN" | grep WM_CLASS | cut -d ' ' -f3-)" + +# E.g. just a check to ignore 1-finger gestures in foxtrotgps +if echo "$WMCLASS" | grep -vi foxtrot; then + $@ +fi diff --git a/scripts/core/sxmo_lisgdstart.sh b/scripts/core/sxmo_lisgdstart.sh index 169745f..05dccc6 100755 --- a/scripts/core/sxmo_lisgdstart.sh +++ b/scripts/core/sxmo_lisgdstart.sh @@ -2,12 +2,12 @@ pkill -9 lisgd lisgd $@ \ - -g '1,LR,xdotool key --clearmodifiers Alt+Shift+e' \ - -g '1,RL,xdotool key --clearmodifiers Alt+Shift+r' \ - -g '1,DLUR,sxmo_vol.sh up' \ - -g '1,URDL,sxmo_vol.sh down' \ - -g '1,DRUL,sxmo_brightness.sh up' \ - -g '1,ULDR,sxmo_brightness.sh down' \ + -g '1,LR,sxmo_lisgdonefingercheck.sh xdotool key --clearmodifiers Alt+Shift+e' \ + -g '1,RL,sxmo_lisgdonefingercheck.sh xdotool key --clearmodifiers Alt+Shift+r' \ + -g '1,DLUR,sxmo_lisgdonefingercheck.sh sxmo_vol.sh up' \ + -g '1,URDL,sxmo_lisgdonefingercheck.sh sxmo_vol.sh down' \ + -g '1,DRUL,sxmo_lisgdonefingercheck.sh sxmo_brightness.sh up' \ + -g '1,ULDR,sxmo_lisgdonefingercheck.sh sxmo_brightness.sh down' \ -g '2,LR,xdotool key --clearmodifiers Alt+e' \ -g '2,RL,xdotool key --clearmodifiers Alt+r' \ -g '2,DU,pidof svkbd-sxmo || svkbd-sxmo &' \