在Ubuntu 12.04中增加触控板的指针速度

我正在尝试使Apple Trackpad更适合我的需求。 所以确实设置了

motion-acceleration to 120 and motion-threshold to -500 

如此处所示,如下图所示。

在此处输入图像描述

指针的速度仍然很慢所以我做了一些研究,发现鼠标速度是一个不同的参数,并称为resolution ,如此处所述。

我的问题

如何在Ubuntu 12.04.01中提高触控板鼠标指针的速度

从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”,但我不确定。 我认为“触控板”应该可行。

您还应该知道我已经凭空提出了这些数字,并提供了大量选项。

您可以使用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退出

请享用

对于寻找解决方法的其他人来说, Pointing Devices GUI程序可以直接使用,并且不会禁用点按。

 sudo apt-get install gpointing-device-settings