Prevent already existing modifiers to prevent view change

Signed-off-by: Stacy Harper <contact@stacyharper.net>
Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
master
Stacy Harper 3 years ago committed by Maarten van Gompel
parent 2e6ce5c810
commit f9976df021
  1. 8
      scripts/core/sxmo_workspace.sh

@ -49,16 +49,16 @@ sway() {
dwm() { dwm() {
case "$1" in case "$1" in
next) next)
xdotool key Super+Shift+r xdotool key --clearmodifiers Super+Shift+r
;; ;;
previous) previous)
xdotool key Super+Shift+e xdotool key --clearmodifiers Super+Shift+e
;; ;;
move-next) move-next)
xdotool key Super+r xdotool key --clearmodifiers Super+r
;; ;;
move-previous) move-previous)
xdotool key Super+e xdotool key --clearmodifiers Super+e
;; ;;
esac esac
} }

Loading…
Cancel
Save