From f9976df021982ad51c83486808ee7420a202e47a Mon Sep 17 00:00:00 2001 From: Stacy Harper Date: Wed, 1 Sep 2021 18:34:00 +0200 Subject: [PATCH] Prevent already existing modifiers to prevent view change Signed-off-by: Stacy Harper Signed-off-by: Maarten van Gompel --- scripts/core/sxmo_workspace.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/core/sxmo_workspace.sh b/scripts/core/sxmo_workspace.sh index c502c52..73e293b 100644 --- a/scripts/core/sxmo_workspace.sh +++ b/scripts/core/sxmo_workspace.sh @@ -49,16 +49,16 @@ sway() { dwm() { case "$1" in next) - xdotool key Super+Shift+r + xdotool key --clearmodifiers Super+Shift+r ;; previous) - xdotool key Super+Shift+e + xdotool key --clearmodifiers Super+Shift+e ;; move-next) - xdotool key Super+r + xdotool key --clearmodifiers Super+r ;; move-previous) - xdotool key Super+e + xdotool key --clearmodifiers Super+e ;; esac }