如何在 Ubuntu 19.04 x11 Unity 上的 libinput 中启用点击单击、双击右键单击和其他此类行为。在鼠标和触摸板设置中启用点击单击没有任何区别。安装 xserver-xorg-input-synaptics 后,所需的行为即可立即使用。我正在使用 Logitech 无线触摸板。
答案1
这是一个众所周知的问题。您最好使用libinput
。然后您只需创建一个文件并在定位正确的设备后启用选项即可。
$ sudo su # Get root
# touch /etc/X11/xorg.conf.d/30-touchpad.conf
# vim /etc/X11/xorg.conf.d/30-touchpad.conf
现在您可以在这里添加其他选项。基本选项如下:
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "NaturalScrolling" "on"
Option "ClickMethod" "clickfinger"
EndSection