Debian Jessie
Para permitir que el panel táctil toque permanentemente, copie el 50-synaptics.conf
archivo para /etc/X11/xorg.conf.d
luego editarlo agregandoOption "TapButton1" "1"
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
El /etc/X11/xorg.conf.d/50-synaptics.conf
debería ser:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Reinicie su sistema
Debian Stretch and Buster (actualizado)
Retirar el xserver-xorg-input-synaptics
paquete. (importante)
# apt remove xserver-xorg-input-synaptics
Instalar xserver-xorg-input-libinput
:
# apt install xserver-xorg-input-libinput
En la mayoría de los casos, asegúrese de tener el xserver-xorg-input-libinput
paquete instalado y no el xserver-xorg-input-synaptics
paquete.
Crea el 40-libinput.conf
archivo:
# 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
reinicia tu DM; p.ej:
# systemctl restart lightdm
o
# systemctl restart gdm3
Wiki de Debian: habilite el toque en el panel táctil