当我的另一个食指是静态的,触摸触控板的左边底部时,如何用一个食指在触控板的顶部移动指针?我可以在Windows 10中这样做,但由于某种原因,当我这样做时,鼠标箭头不会在Ubuntu中移动。
系统:Ubuntu18.04,内核5.4.0-050400-泛型和LXDE作为桌面环境。
谢谢
发布于 2021-01-06 01:27:35
将/usr/share/x11/xorg.con.d/40-libinput.conf复制到同一个文件夹中的90-libinput.conf文件中,并按以下方式更新90-libinput.conf解决了问题:
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "True"
Option "DisableWhileTyping" "True"
Option "TransformationMatrix" "4.000000 0.000000 0.000000 0.000000 4.000000 0.000000 0.000000 0.000000 1.000000"
EndSection
https://askubuntu.com/questions/1303827
复制相似问题