タッチパッドをクリックしてクリックを有効にしますか?

タッチパッドをクリックしてクリックを有効にしますか?

私はPowerbook G4 15" 1.67GHzでDebian 8.6 LXDEを使用しており、タッチパッドをクリックできるようにしたいです。すでにデュアルスクロールですが、クリックすると老化したマウスボタンを保存するのに役立ちます。するとケーキの上に飾りになりますか?

ベストアンサー1

Debian の提示

タッチパッドのクリックを永久に有効にするには、ファイルをコピーします50-synaptics.conf/etc/X11/xorg.conf.dOption "TapButton1" "1"

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

しなければなら/etc/X11/xorg.conf.d/50-synaptics.confない:

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"

システムを再起動してください

Debian ストレッチとバスター(直す)

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

rootユーザーとして:

作る/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:タッチパッドクリックを有効にする

おすすめ記事