I've tried to do my homework and see if I could figure our how to disable tap-to-click on the touchpad of my Microsoft wireless keyboard.
The info I've come across entails pointing systemd at /storage/.config/xorg.conf.d/ and adding a 10-synaptics.conf file consisting of:
Code
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "MaxTapTime" "0"
EndSection
I've also seen suggestion of instead a libinput.conf file similar to:
Code
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "off"
Option "NaturalScrolling" "on"
Option "ClickMethod" "clickfinger"
EndSection
Neither seem to work. Xorg seems to be reading that conf directory successfully as it's picking up changes I made for the video driver (to eliminate Intel HW tearing).
I'm trying to understand if any vendor model touchpad would be covered by the latter? Attempts to use "xinput" to determine what hardware X is using doesn't work, as "xinput" doesn't seem to be installed.
Any pointers appreciated... thanks.