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

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

我正在尝试让 Apple Trackpad 更适合我的需求。因此设置了

motion-acceleration to 120 and

motion-threshold to -500

按照建议这里如下图所示。

在此处输入图片描述

指针的速度仍然很慢,所以我做了一些研究,发现鼠标速度是一个不同的参数,正如resolution所解释的那样这里

我的问题

如何增加速度Ubuntu 12.04.01 中触控板鼠标指针的更改?

答案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

相关内容