Debian Jessie
Per abilitare il tocco permanente del touchpad, copiare il 50-synaptics.conf
file per /etc/X11/xorg.conf.d
modificarlo aggiungendoOption "TapButton1" "1"
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
Il /etc/X11/xorg.conf.d/50-synaptics.conf
dovrebbe essere:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Riavvia il tuo sistema
Debian Stretch and Buster (aggiornato)
Rimuovi il xserver-xorg-input-synaptics
pacchetto. (importante)
# apt remove xserver-xorg-input-synaptics
Installa xserver-xorg-input-libinput
:
# apt install xserver-xorg-input-libinput
Nella maggior parte dei casi, assicurarsi di avere xserver-xorg-input-libinput
installato il pacchetto e non il xserver-xorg-input-synaptics
pacchetto.
Crea il 40-libinput.conf
file:
# 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
riavvia il tuo DM; per esempio:
# systemctl restart lightdm
o
# systemctl restart gdm3
Wiki Debian: abilita toccando sul touchpad