xmodmap -e "pointer = 1 2 3 5 4"
不起作用。
我是直接扔在 /etc/X11/xorg.conf.d/30-touchpad.conf
下面,附内容:
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "Tapping" "on"
Option "TappingButtonMap" "lmr"
Option "TappingDrag" "on"
Option "DisableWhileTyping" "on"
Option "ButtonMapping" "1 3 0 5 4 7 6"
EndSection
不过这会鼠标滚轮与触摸板会相互影响的,修改一下 ButtonMapping
和 TappingButtonMap
就行
设置,Mouse -> Scrolling: Invert scroll direction 前边,有个打勾的地方。
/usr/share/X11/xorg.conf.d/10-evdev.conf
和 40-libinput
都加了一句:
Option "NaturalScrolling" "True"
解决问题。