PowerbookG415インチ1.67GHzでDebian8.6LXDEを使用していますが、タッチパッドをタップしてクリックできるようにしたいと考えています。すでにダブルスクロールですが、タップしてクリックすると、古いマウスボタンを保存するのに役立ちます。左クリックで2本の指でタップすると、ケーキのアイシングになりますが、これは可能ですか?
承認された回答:
Debian Jessie
タッチパッドのタップを永続的に有効にするには、50-synaptics.conf
をコピーします /etc/X11/xorg.conf.d
へのファイル 次に、Option "TapButton1" "1"
を追加して編集します 。
ルートとして:
mkdir /etc/X11/xorg.conf.d
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
/etc/X11/xorg.conf.d/50-synaptics.conf
する必要があります:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
システムを再起動します
Debian Stretch and Buster (更新)
xserver-xorg-input-synaptics
を削除します パッケージ。 (重要)
# apt remove xserver-xorg-input-synaptics
xserver-xorg-input-libinput
をインストールします :
# apt install xserver-xorg-input-libinput
ほとんどの場合、
xserver-xorg-input-libinput
があることを確認してくださいxserver-xorg-input-synaptics
ではなく、パッケージがインストールされています パッケージ。
ルートとして:
/etc/X11/xorg.conf.d/
を作成します
mkdir /etc/X11/xorg.conf.d
40-libinput.conf
を作成します ファイル:
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
DMを再起動します。例:
# systemctl restart lightdm
または
# systemctl restart gdm3
Debian wiki:タッチパッドのタップを有効にする