▲ 1 r/Ubuntu
I'm using Fusuma along with Dotool (not Xdotool, just "dotool") to be able to use gestures with my Apple Magic Trackpad 2.
Everything works fine except randomly (between 30 mins to a few hours) it will all stop working and I have to pkill Fusuma and restart it to get things working again.
I assume this is something I have done to screw up my own setup due to my lack of understanding. I don't know how to go about diagnosing the issue to track down what the problem is. The mouse and keyboard continue to work when I have to restart, only the gestures fail.
Ubuntu 24.04.4 LTS - GNOME Wayland (the reason I use dotool over xdotool)
Any advice welcome.
My fusuma config file:
# General configuration:
# Action timeout is 1000ms (1 second)
# Adjust this if gestures feel too slow or too fast.
action_timeout: 1000
# For pinch and rotation, specify number of fingers
# pinch_fingers: 2
# rotate_fingers: 2
# Global sensitivity settings
threshold:
swipe: 0.4
pinch: 0.1
interval:
swipe: 0.8
# pinch: 0.1
# ---- 3-Finger Gestures ----
swipe:
3:
right:
command: 'echo key ctrl+pagedown | dotoolc'
threshold: 0.10
interval: 0.6
left:
command: 'echo key ctrl+pageup | dotoolc'
threshold: 0.10
interval: 0.6
up:
command: 'echo key right | dotoolc'
threshold: 0.10
interval: 0.4
down:
command: 'echo key left | dotoolc'
threshold: 0.10
interval: 0.4
# ---- 4-Finger Gestures ----
4:
right:
command: 'playerctl next'
left:
command: 'playerctl previous'
up:
command: 'echo key ctrl+w | dotoolc'
down:
command: 'echo key ctrl+shift+t | dotoolc'
# Example for pinch gestures (ensure GESTURE_PINCH_FINGERS is set if not default)
pinch:
3: # 3-finger pinch (for workspace switching with Alt+W / Alt+Home)
in:
command: 'echo key alt+w | dotoolc'
out: # Pinch Out (expand) with 3 fingers
command: 'echo key Alt+Home | dotoolc'
threshold: 0.15
4: # 4-finger pinch for Play/Pause
in:
command: 'playerctl play-pause'
threshold: 0.15
out:
command: 'playerctl loop Track'
threshold: 0.15
keypress:
F12:
command: 'echo key XF86AudioLowerVolume | dotoolc'
u/BlackFoxLingerie — 14 days ago