更改触摸板水平和垂直加速度/灵敏度?

use*_*686 9 touchpad synaptics

如何单独更改光标的水平和垂直加速度?我可以在笔记本电脑上的 1600x900 显示器上单笔左右滚动,但我永远无法垂直滚动。此外,触摸板似乎在水平方向上过于敏感(我保持食指不动,但光标巧妙地移动)......这可以修复吗?

我正在使用 Synaptics 触摸板。

use*_*686 6

Ubuntu 11.04 的解决方案:

添加选项

Option "VertResolution" "75"
Option "HorizResolution" "75"
Run Code Online (Sandbox Code Playgroud)

到文件/usr/share/X11/xorg.conf.d/50-synaptics.conf

这样做之后,我的看起来像:

Section "InputClass"
    Identifier "touchpad catchall"
    Driver "synaptics"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Option "VertResolution" "75"
    Option "HorizResolution" "75"
EndSection
Run Code Online (Sandbox Code Playgroud)

现在注销并重新登录,应该没问题!:)