Estou usando o Lubuntu 21.04. Gostaria de ativar o toque para clicar na tela de login do SDDM. Existe uma maneira de habilitá-lo?
Responder1
Fonte:GitHub
Se o SDDM estiver rodando no Xorg e você usar libinput, basta adicionar a opção "Tapping" "on" a um arquivo conf do xorg em /etc//X11/xorg.conf.d/ Você pode usar isto:
sudo vim /etc/X11/xorg.conf.d/20-touchpad.conf
Cole a seguinte:
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