如何用一根食指在触摸板的顶部移动指针,同时另一根食指静止并触摸触摸板的左下角?我可以在 Windows 10 中执行此操作,但由于某种原因,当我在 Ubuntu 中执行此操作时,鼠标箭头不会移动。
系统:Ubuntu 18.04,内核为5.4.0-050400-generic,桌面环境为LXDE。
谢谢
答案1
将 /usr/share/X11/xorg.conf.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