我用debian
和i3wm
。
如何配置觸控板?我的意思是“點擊點擊”,透過觸控板右側垂直滾動。
答案1
自從觸控板 Synaptics不再主動更新,您可以使用庫輸入反而。
/etc/X11/xorg.conf.d/30-touchpad.conf
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "ScrollMethod" "edge"
EndSection
這裡列出了所有選項。
答案2
最簡單的方法是同步客戶端。
使用:
synclient -l
列出所有選項及其當前設置,然後您可以使用:
synclient var1=value1 [var2=value2] ...
更改不同的選項。
要使變更永久生效,您可以建立腳本並在i3 登入時執行它,或編輯檔案/etc/X11/xorg.conf.d(如果沒有它,請從/etc/X11/xorg.conf 複製它) 。在 /etc/X11/xorg.conf.d 中,您應該在以下位置寫入您的設定:
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
形式為:
Option "var1" "value1"
...
對於右側的點擊和垂直滾動,您應該添加:
Option "TapButton1" "1"
Option "VertEdgeScroll" "0"
您也可以查看 arch linux wiki 頁面有關觸控板_Synaptics
如果您想要更多手勢,請查看觸蛋