Score:0

How to enable trackpad tap to click in SDDM login page?

fr flag

I'm using Lubuntu 21.04. I would like to enable tap to click in the SDDM login screen. Is there a way to enable it?

guiverc avatar
cn flag
Until you login LXQt is not involved as it's not been started when you're at the `sddm` greeter. I'll refer you to https://github.com/sddm/sddm/issues/657 that may help
Colorizer avatar
fr flag
@guiverc Thank you! That solved the issue!
guiverc avatar
cn flag
If you write up your solution in the answer section below, others can benefit from this question/answer, and you can gain some reputation points for the site. :)
Colorizer avatar
fr flag
Okay! I'll create an answer.
Score:1
fr flag

Source: github

If SDDM is running on Xorg, and you use libinput, just add Option "Tapping" "on" to a xorg conf file in /etc//X11/xorg.conf.d/ You can use this:

sudo vim /etc/X11/xorg.conf.d/20-touchpad.conf

Paste the following:

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"

        Option "Tapping" "on"
        Option "NaturalScrolling" "on"
        Option "MiddleEmulation" "on"
        Option "DisableWhileTyping" "on"
EndSection
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.