rob2701 wrote: ⤴Tue Aug 14, 2018 9:19 am
single tap or double-tap gives the same result as using the buttons below the touchpad in ALL other cases everywhere. So calling this a user error is a bit far-fetched?
If anything I would rather name it a quirk in the login screen...
And yes the left and right button on the touchpad work just fine with the login screen buttons
Heh, don't misunderstand me, "user error" wasn't meant to place blame, just to identify whether where the actual issue lies. After all we've come a long way from "quit button not working" to "tap-to-click not working".
That said, it wasn't unreasonable of you to expect it to work on the login screen. I just know it doesn't because I know that this is an optional feature that's not enabled by default. Ideally you would be able to configure it via lightdm's Login Window tool, but right now you are not.
In the meantime, it's easy to change the default manually. Open the respective configuration file like this:
Code: Select all
xed admin:///usr/share/X11/xorg.conf.d/40-libinput.conf
And then find this section, which defines the default driver for touchpads:
Code: Select all
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Now we add the option to enable tap-to-click so it looks like this:
Code: Select all
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection
Refer to
man libinput
for other optional parameters you can set.