From 12e9a9fdbdf09d7df10ba8a9716b794afa2617a6 Mon Sep 17 00:00:00 2001 From: Miles Alan Date: Wed, 29 Apr 2020 20:25:32 -0500 Subject: [PATCH] Change default bindings --- config.def.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index f9c24cd..7bfab23 100644 --- a/config.def.h +++ b/config.def.h @@ -10,11 +10,11 @@ char *device = "/dev/input/event1"; /* Commands to execute upon recieving a swipe gesture */ Gesture gestures[] = { /* fingers start end command */ - { 1, Left, Right, "xdotool key --clearmodifiers Alt+Shift+h" }, - { 1, Right, Left, "xdotool key --clearmodifiers Alt+Shift+l" }, + { 1, Left, Right, "xdotool key --clearmodifiers Alt+Shift+e" }, + { 1, Right, Left, "xdotool key --clearmodifiers Alt+Shift+r" }, - { 2, Left, Right, "xdotool key --clearmodifiers Alt+h" }, - { 2, Right, Left, "xdotool key --clearmodifiers Alt+l" }, + { 2, Left, Right, "xdotool key --clearmodifiers Alt+e" }, + { 2, Right, Left, "xdotool key --clearmodifiers Alt+r" }, { 2, Down, Up, "pidof svkbd-sxmo || svkbd-sxmo &" }, { 2, Up, Down, "pkill -9 svkbd-sxmo" },