答案1
来自 synaptics 手册页:
加速度
The MinSpeed, MaxSpeed and AccelFactor parameters control the pointer
motion speed. The speed value defines the scaling between touchpad
coordinates and screen coordinates. When moving the finger very
slowly, the MinSpeed value is used, when moving very fast the MaxSpeed
value is used. When moving the finger at moderate speed, you get a
pointer motion speed somewhere between MinSpeed and MaxSpeed. If you
don't want any acceleration, set MinSpeed and MaxSpeed to the same
value.
我们来尝试一下吧!
$ gksudo gedit /etc/X11/xorg.conf
如果没有xorg.conf
文件,请创建一个空文件。添加类似内容并尝试使用参数。
Section "InputClass"
Identifier "Touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "VertTwoFingerScroll" "on"
Option "HorizTwoFingerScroll" "on"
Option "VertScrollDelta" "85"
Option "HorizScrollDelta" "85"
Option "TapButton1" "0"
Option "TapButton2" "0"
Option "TapButton3" "0"
Option "MinSpeed" "0.7"
Option "MaxSpeed" "1.4"
Option "AccelFactor" "0.1"
EndSection
可能应该Identifier
设置为“Apple Magic Trackpad”,但我不确定。我认为“Touchpad”应该可以。
您还应该知道,我在建议的配置中凭空得出了这些数字,并且有无数个选项可用。
您可以使用 测试当前会话的选项synclient
。这样,您无需重新启动 X 即可使更改生效。一旦您对参数感到满意,您就可以将它们添加/编辑/删除到您的设置中,xorg.conf
以使它们永久生效。
我不确定是否synclient
默认安装。
$ sudo apt-get install synclient
暂时启用 SHMConfig
$ synclient SHMConfig=1
测试选项。例如MinSpeed
$ synclient MinSpeed=0.5
欲了解选项及其值的详细列表,请运行
$ man synaptics
按下j向下滚动
按下k向上滚动
按下/搜索字符串,按下搜索n下一个匹配项,p按下搜索上一个匹配项
按?反向搜索
按q退出
享受
答案2
对于其他正在寻找解决方法的人来说,指点设备 GUI程序立即运行,并且不会禁用点击。
sudo apt-get install gpointing-device-settings