Sto usando Debian 8.6 LXDE su un Powerbook G4 15″ 1.67GHz e vorrei abilitare il tocco per fare clic sul touchpad. È già un doppio scorrimento, ma toccare per fare clic aiuterebbe a salvare il vecchio pulsante del mouse. Il tocco con due dita per il clic sinistro sarebbe la ciliegina sulla torta, è possibile?
Risposta accettata:
Debian Jessie
Per abilitare il tocco permanente del touchpad , copia il 50-synaptics.conf
file in /etc/X11/xorg.conf.d
quindi modificalo aggiungendo Option "TapButton1" "1"
.
Come root:
mkdir /etc/X11/xorg.conf.d
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 sistema
Debian Stretch and Buster (aggiornato)
Rimuovi 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, assicurati di avere il xserver-xorg-input-libinput
pacchetto installato e non xserver-xorg-input-synaptics
pacchetto.
Come root:
crea /etc/X11/xorg.conf.d/
mkdir /etc/X11/xorg.conf.d
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; es:
# systemctl restart lightdm
o
# systemctl restart gdm3
Debian wiki:abilita il tocco sul touchpad