Created
August 26, 2019 04:31
-
-
Save briandominick/9cb2f5a9f9d994b5409c23fdf07c7770 to your computer and use it in GitHub Desktop.
Configuration file for fusuma touchpad gestures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fusuma makes Linux touchpads better | |
# See https://github.com/iberianpig/fusuma | |
swipe: | |
3: | |
left: | |
command: 'xdotool key alt+Right' | |
right: | |
command: 'xdotool key alt+Left' | |
up: | |
command: 'xdotool key super' | |
down: | |
command: 'xdotool key super' | |
4: | |
left: | |
command: 'xdotool key super+Down' | |
right: | |
command: 'xdotool key super+Up' | |
up: | |
command: 'xdotool key super+1' | |
down: | |
command: 'xdotool key super+4' | |
pinch: | |
2: | |
in: | |
command: 'xdotool key ctrl+equal' | |
out: | |
command: 'xdotool key ctrl+minus' | |
threshold: | |
swipe: 0.1 | |
pinch: 0.1 | |
interval: | |
swipe: 0.2 | |
pinch: 0.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment