Debian9 Stretch タッチパッドのタップを可能にする

Debian9 Stretch タッチパッドのタップを可能にする

synapticsタッチパッドのタップをONにする設定

ディレクトリを移動
# cd /usr/share/X11/xorg.conf.d

エディタで 40-libinput.conf を編集する。

下記のように、
「Option “Tapping” “on”」の1行を追加する。

Section “InputClass”
Identifier “libinput touchpad catchall
MatchIsTouchPad “on”
MatchDevicePath “/dev/input/event*”
Driver “libinput”
Option “Tapping” “on”
EndSection

管理者