Hi folks,
Recently I got my I3 configs finished and I thought: How can I make it feel a bit more like… macOS
Using fusuma you can configure your mouse gestures to correspond to key combos
my kind of how-to and my config are below!
- yay ruby-fusuma
- mkdir -p ~/.config/fusuma
- vim ~/.config/fusuma/config.yml
Change the key combo with the one you use to switch workspaces
swipe:
3:
left:
command: ‘xdotool key Super_L+Control_L+Left’
right:
command: ‘xdotool key Super_L+Control_L+Right’
threshold:
swipe: 0.4
pinch: 0.4
interval:
swipe: 0.8
pinch: 0.1
get it in a service or add an exec line on your i3 config
fusuma -d -c ~/.config/fusuma/config.yml
now you can use 3 finger swipe to go next/previous on our workspaces
open for opinions