O touchpad não reage ao toque

1

Tenho o Debian Stretch (xfce) e o meu touchpad não reage ao toque.

Pesquisei algumas soluções para corrigi-lo, por exemplo:

  • crie 50-synaptics.conf para /etc/X11/Xsession.d / e / usr / share / X11 /xorg.conf.d /

50-synaptics.conf

Section “InputClass”
        Identifier  “touchpad catchall”
        Driver  “synaptics”
        MatchIsTouchpad “on”
MatchDevicePath “/dev/input/event*”
        Option  “TapButton1”  “1”
        Option  “TapButton2”  “2”
        Option  “TapButton3”  “3”

Mas se eu tentar alguma solução, cada um de mim começa a travar o Light-Display-Manager.

Eu tenho que deletar 50-synaptics.conf e reiniciar o notebook.

Então, posso corrigir meu problema com o touchpad?

    
por J. Doe 02.02.2018 / 19:36

1 resposta

0

Debian 9 "Stretch" está usando o driver libinput

$ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
    Identifier "libinput touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm

De Wiki do Debian

    
por 24.03.2018 / 14:18

Tags