I want to activate tap to click on my Lenovo e525 trackpad using libinput.
I have list-devices saying that its not activated.
I'm on Kubuntu 22.04.
How do I do this?
I want to activate tap to click on my Lenovo e525 trackpad using libinput.
I have list-devices saying that its not activated.
I'm on Kubuntu 22.04.
How do I do this?
Assuming you're using Xorg, a simple way would be to create a new file under /etc/X11/xorg.conf.d
:
sudo vim /etc/X11/xorg.conf.d/30-touchpad.conf
and add a basic configuration for the trackpad, like:
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "NaturalScrolling" "on"
Option "ClickMethod" "clickfinger"
EndSection
Worth checking that there is not already a file there for the touchpad, in that case simply add Option "Tapping" "on"
to it.
The config should kick in after rebooting.
I'm sure however that there is a graphical way in KDE. If you go in Settings and search "Tap" you'll probably find it the correct switch.