From bbc5c7227506e2d207beda97f0b25a746ca26ac3 Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Mon, 5 Apr 2021 09:24:47 +0100 Subject: [PATCH] Swipe left or right along the bottom edge changes tag This is also dependent on a change in dwm that binds win+left or win+right to the switch workspace action. --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.def.h b/config.def.h index 9aafaf2..38cbf90 100644 --- a/config.def.h +++ b/config.def.h @@ -44,4 +44,6 @@ Gesture gestures[] = { { 2, SwipeDU, EdgeBottom, DistanceShort, "pidof svkbd-colemak || pidof svkbd-numbers || svkbd-numbers &" }, { 1, SwipeUD, EdgeBottom, DistanceShort, "pkill -9 'svkbd-*'" }, { 2, SwipeUD, EdgeBottom, DistanceShort, "pkill -9 'svkbd-*'" }, + { 1, SwipeLR, EdgeBottom, DistanceShort, "xdotool key --clearmodifiers 'Super_L+Right'" }, + { 1, SwipeRL, EdgeBottom, DistanceShort, "xdotool key --clearmodifiers 'Super_L+Left'" }, };