Debian Jessie
Um das Tippen auf das Touchpad dauerhaft zu aktivieren, kopieren Sie die 50-synaptics.conf
Datei /etc/X11/xorg.conf.d
und bearbeiten Sie sie durch HinzufügenOption "TapButton1" "1"
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
Das /etc/X11/xorg.conf.d/50-synaptics.conf
sollte sein:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Starten Sie Ihr System neu
Debian Stretch and Buster (aktualisiert)
Entfernen Sie das xserver-xorg-input-synaptics
Paket. (wichtig)
# apt remove xserver-xorg-input-synaptics
Installieren Sie xserver-xorg-input-libinput
:
# apt install xserver-xorg-input-libinput
Stellen Sie in den meisten Fällen sicher, dass Sie das xserver-xorg-input-libinput
Paket installiert haben und nicht das xserver-xorg-input-synaptics
Paket.
Erstellen Sie die 40-libinput.conf
Datei:
# 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
Starten Sie Ihren DM neu. z.B:
# systemctl restart lightdm
oder
# systemctl restart gdm3
Debian-Wiki: Tippen auf dem Touchpad aktivieren