Debian Jessie
Para ativar o toque permanente no touchpad, copie o 50-synaptics.conf
arquivo /etc/X11/xorg.conf.d
e edite-o adicionandoOption "TapButton1" "1"
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
O /etc/X11/xorg.conf.d/50-synaptics.conf
deve ser:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Reinicie seu sistema
Debian Stretch and Buster (atualizado)
Retire a xserver-xorg-input-synaptics
embalagem. (importante)
# apt remove xserver-xorg-input-synaptics
Instalar xserver-xorg-input-libinput
:
# apt install xserver-xorg-input-libinput
Na maioria dos casos, verifique se você tem o xserver-xorg-input-libinput
pacote instalado, e não o xserver-xorg-input-synaptics
pacote.
Crie o 40-libinput.conf
arquivo:
# 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
reinicie seu mestre; por exemplo:
# systemctl restart lightdm
ou
# systemctl restart gdm3
Wiki Debian: Ative o toque no touchpad