熟悉windows下触控板自然滚动和轻触单击,在i3等窗口管理器下可能会非常不适应,这些窗口管理器默认不是,下面我来介绍下在i3wm等窗口管理器以及桌面环境(有时系统设置无法修改自然滚动)下如何设置自然滚动和轻触单击。
1.编辑/usr/share/X11/xorg.conf.d/40-libinput.conf
2.添加 Option “NaturalScrolling” “True” 和 Option “Tapping” "True"这一行到指定位置
例如:
如果是修改鼠标自然滚动的话
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "NaturalScrolling" "True"
EndSection
对于触控板的话,大概原理也相同
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "NaturalScrolling" "True"
Option "Tapping" "True"
EndSection
重启就已经是自然滚动以及轻按单击了