私はvirtualboxを介してDebian 10でCinnamonを使用していますが、「マウスとタッチパッド」の設定では、3本指のタッチパッドクリックをマウスの中ボタンで設定できないようです。
私はまた何ができますか?
答え1
3本指を押すには、次の設定ファイルを編集します/etc/X11/xorg.conf.d
。
sudo nano /etc/X11/xorg.conf.d/40-libinput.conf
次のように:
Section "InputClass"
Identifier "libinput touchpad catchall"
#MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
Option "TappingButtonMap" "lmr"
EndSection
Arch-linux Wikiには次の履歴があります。ボタンの再マッピング
2本の指と3本の指のクリックをタッチパッドに置き換えるのは簡単な例です。
TappingButtonMap
Xorg設定ファイルでオプションを設定して、デフォルトの3本指をクリックして貼り付けるのではなく、2本の指をクリックして貼り付けを設定できます。 1/2/3指タブを左/右/中央に設定するには、に設定し、TappingButtonMap
左lrm
/中央/右をに設定しますlmr
。Section "InputClass" Identifier "touchpad" Driver "libinput" MatchIsTouchpad "on" Option "Tapping" "on" Option "TappingButtonMap" "lmr" EndSection
気づく:デバイスがタッチパッドでない場合は、それを削除して
MatchIsTouchpad "on"
識別子を調整する必要があります。