Linux-Tech-Tips/plasma-touchpad-gestures.md

23 lines
1.4 KiB
Markdown
Raw Normal View History

2024-03-14 17:12:43 +01:00
# How to add touchpad gestures on Arch Linux and KDE Plasma
Following this very old tutorial I wanted to see if I could create a touchpad gesture on Arch Linux and KDE Plasma 6.
https://www.lorenzobettini.it/2017/02/touchpad-gestures-in-linux-kde-with-libinput-gestures/
My goal was to have a similar gesture to macOS's three finger swipe up to open so-called Mission Control, just like the application overview on Plasma (default shortcut is Meta+W).
2024-03-15 11:21:09 +01:00
1. Install the `libinput-gestures` package from the AUR: https://aur.archlinux.org/packages/libinput-gestures
(I use yay for that.`
# `yay -S libinput-gesture`
2024-03-14 17:12:43 +01:00
2. Install xdotool to bind gestures to virtual key strokes and/or optionally wmctrl for libinput-gestures internal commands.
2024-03-15 11:21:09 +01:00
# `pacman -S xdotool wmctrl`
2024-03-14 17:12:43 +01:00
3. Add the current user to the input group:
2024-03-15 11:21:09 +01:00
# `gpasswd -a $USER input`
2024-03-14 17:12:43 +01:00
4. Start libinput-gestures and make it autostart at login:
2024-03-15 11:21:09 +01:00
$ `libinput-gestures-setup autostart start`
2024-03-14 17:12:43 +01:00
5. Copy the default config file to your $HOME.
2024-03-15 11:21:09 +01:00
# `cp /etc/libinput-gestures.conf ~/.config/libinput-gestures.conf`
2024-03-14 17:12:43 +01:00
6. Edit the file and add a gesture. For example the following:
2024-03-15 11:21:09 +01:00
` gesture swipe up 3 xdotool key super+w`
2024-03-14 17:12:43 +01:00
7. Restart libinput-gestures:
2024-03-15 11:21:09 +01:00
$ `libinput-gestures-setup restart`
2024-03-14 17:12:43 +01:00
8. Now when swiping up on your touchpad using three finger, xdotool is pressing the Super- or Meta-Key and "W", whih opens the application overview.