25 lines
1.0 KiB
C
25 lines
1.0 KiB
C
/*
|
|
distancethreshold: Minimum cutoff for a gestures to take effect
|
|
degreesleniency: Offset degrees within which gesture is recognized (max=45)
|
|
timeoutms: Maximum duration for a gesture to take place in miliseconds
|
|
orientation: Number of 90 degree turns to shift gestures by
|
|
verbose: 1=enabled, 0=disabled; helpful for debugging
|
|
device: Path to the /dev/ filesystem device events should be read from
|
|
gestures: Array of gestures; binds num of fingers / gesturetypes to commands
|
|
Supported gestures: SwipeLR, SwipeRL, SwipeDU, SwipeUD,
|
|
SwipeDLUR, SwipeURDL, SwipeDRUL, SwipeULDR
|
|
*/
|
|
|
|
unsigned int distancethreshold = 300;
|
|
unsigned int degreesleniency = 15;
|
|
unsigned int timeoutms = 800;
|
|
unsigned int orientation = 0;
|
|
unsigned int verbose = 0;
|
|
char *device = "/dev/input/event1";
|
|
|
|
Gesture gestures[] = {
|
|
/* nfingers gesturetype command */
|
|
{ 4, SwipeLR, "swaymsg workspace prev_on_output" },
|
|
{ 4, SwipeRL, "swaymsg workspace next_on_output" },
|
|
};
|