When I log into Archlinux on Dell Vostro 5590, if I want to "click" something with the touchpad I have to press the touchpad, as tapping it is not enough as I'd like it to be.
Running the following
xinput set-prop 11 "libinput Tapping Enabled" 1
correctly enables that behavior I want. (I got that 11 by examining the output of xinput list
and that string by examining the output of xinput list-props 11
.)
However, this setting change does not survive a log-out/reboot.
My understanding is that I should run
xinput set-prop 11 "libinput Tapping Enabled Default" 1
but this give the following error
X Error of failed request: BadAccess (attempt to access private resource denied)
Major opcode of failed request: 131 (XInputExtension)
Minor opcode of failed request: 57 ()
Serial number of failed request: 21
Current serial number in output stream: 22
I know I can put the non-Default
command in my ~/.xinit
before starting the WM, but I don't think it is a clean solution.