Debian Jessie
Pour activer le tapotement du pavé tactile de façon permanente, copiez le 50-synaptics.conf
fichier pour /etc/X11/xorg.conf.d
le modifier en ajoutantOption "TapButton1" "1"
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
Le /etc/X11/xorg.conf.d/50-synaptics.conf
devrait être:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Redémarrez votre système
Debian Stretch et Buster (mis à jour)
Retirez l' xserver-xorg-input-synaptics
emballage. (important)
# apt remove xserver-xorg-input-synaptics
Installer xserver-xorg-input-libinput
:
# apt install xserver-xorg-input-libinput
Dans la plupart des cas, assurez-vous que le xserver-xorg-input-libinput
package est installé et non le xserver-xorg-input-synaptics
package.
Créez le 40-libinput.conf
fichier:
# 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
redémarrez votre DM; par exemple:
# systemctl restart lightdm
ou
# systemctl restart gdm3
Wiki Debian: Activer le tapotement sur le pavé tactile