From 416542a0ade4e8815ee11ed8a57d7c842f3b036b Mon Sep 17 00:00:00 2001 From: kevinnls Date: Sun, 14 Jun 2026 22:37:06 +0530 Subject: [PATCH] kinda like these settings --- config.def.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index c8cb63a..0f6fba0 100644 --- a/config.def.h +++ b/config.def.h @@ -10,15 +10,19 @@ SwipeDLUR, SwipeURDL, SwipeDRUL, SwipeULDR */ -unsigned int distancethreshold = 300; -unsigned int degreesleniency = 15; +unsigned int distancethreshold = 20; +unsigned int degreesleniency = 35; unsigned int timeoutms = 800; -unsigned int orientation = 0; +unsigned int orientation = 2; unsigned int verbose = 0; char *device = "/dev/input/event1"; Gesture gestures[] = { /* nfingers gesturetype command */ + { 3, SwipeRL, "wtype -k right" }, + { 3, SwipeLR, "wtype -k left" }, { 4, SwipeLR, "swaymsg workspace prev_on_output" }, { 4, SwipeRL, "swaymsg workspace next_on_output" }, + { 5, SwipeLR, "wayscriber --daemon-toggle" }, + { 5, SwipeRL, "wayscriber --daemon-toggle" }, };