I3

i3wm:如何配置觸摸板?

  • April 28, 2018

我使用debiani3wm

如何配置觸摸板?我的意思是“點擊點擊”,通過右側觸摸板垂直滾動。

最簡單的方法是使用synclient

採用:

synclient -l

列出所有選項及其目前設置,然後您可以使用:

synclient var1=value1 [var2=value2] ...

更改不同的選項。

要使更改永久生效,您可以創建一個腳本並在 i3 登錄時執行它或編輯文件 /etc/X11/xorg.conf.d(如果您沒有它,請從 /etc/X11/xorg.conf 複製它。 d/50-synaptics.conf )。在 /etc/X11/xorg.conf.d 你應該在下面寫下你的設置:

Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"

在表格中:

Option "var1" "value1"
...

對於右側的點擊和垂直滾動,您應該添加:

Option "TapButton1" "1"
Option "VertEdgeScroll" "0"

您還可以查看有關Touchpad_Synaptics的 arch linux wiki 頁面

如果您想要更多手勢,請查看touchegg

由於觸摸板 Synaptics不再主動更新,因此您可以改用libinput

/etc/X11/xorg.conf.d/30-touchpad.conf

Section "InputClass"
   Identifier "touchpad"
   Driver "libinput"
   MatchIsTouchpad "on"
   Option "Tapping" "on"
   Option "ScrollMethod" "edge"
EndSection

這裡列出了所有選項。

引用自:https://unix.stackexchange.com/questions/289622