diff --git a/scripts/core/sxmo_inputhandler.sh b/scripts/core/sxmo_inputhandler.sh index 37737d9..ec76355 100755 --- a/scripts/core/sxmo_inputhandler.sh +++ b/scripts/core/sxmo_inputhandler.sh @@ -87,11 +87,11 @@ case "$WMCLASS" in type q exit 0 ;; - "twodown") + *"onedown") type u exit 0 ;; - "twoup") + *"oneup") type d exit 0 ;; @@ -116,11 +116,11 @@ case "$WMCLASS" in exit 0 ;; *"onedown") - key d + key u exit 0 ;; *"oneup") - key u + key d exit 0 ;; *"oneright") @@ -142,6 +142,17 @@ case "$WMCLASS" in esac ;; esac + # Now we try generic st actions + case "$ACTION" in + *"onedown") + key Ctrl+Shift+B + exit 0 + ;; + *"oneup") + key Ctrl+Shift+F + exit 0 + ;; + esac esac #standard handling