diff options
| author | Aditya <bluenerd@protonmail.com> | 2023-02-26 20:42:51 +0530 | 
|---|---|---|
| committer | Aditya <bluenerd@protonmail.com> | 2023-02-26 20:42:51 +0530 | 
| commit | c4ae1b39a54d6f1a58f4fc10578b6eedc26c2b5b (patch) | |
| tree | 0870ea4b23b218b9d87ae687b7b36fc615bf78d7 | |
| parent | 7e1c3d3dfe70b0e2ed4a1ae1d8c7fc3e9f90dc03 (diff) | |
add fusuma
| -rw-r--r-- | fusuma/config.yml | 39 | 
1 files changed, 39 insertions, 0 deletions
diff --git a/fusuma/config.yml b/fusuma/config.yml new file mode 100644 index 0000000..c7b09de --- /dev/null +++ b/fusuma/config.yml @@ -0,0 +1,39 @@ +swipe: +  3: +    left: +      command: 'xdotool key ctrl+super+Right' +    right: +      command: 'xdotool key ctrl+super+Left' +    up: +      command: 'xdotool key ctrl+super+down' +    down: +      command: 'xdotool key ctrl+super+up' +  4: +    left: +      command: 'xdotool key super+Right' +    right: +      command: 'xdotool key super+Left' +    up: +      command: 'xdotool key super+a' +    down: +      command: 'xdotool key super+s' + +pinch: +  2: +    in: +      command: 'xdotool key ctrl+equal' +    out: +      command: 'xdotool key ctrl+minus' +  4: +    in: +      command: 'xdotool key super+a' +    out: +      command: 'xdotool key super+s' + +threshold: +  swipe: 0.3 +  pinch: 0.1 + +interval: +  swipe: 1 +  pinch: 1  | 
