我已经使用“鼠标首选项”窗口将鼠标指针加速度和灵敏度滑块设置为最大值,但我仍然对鼠标指针移动的速度不满意(我的显示器很大)。我可以将其加速吗?
答案1
我不太确定鼠标加速度滑块的范围是多少,但您可以使用 轻松地手动更改它xset
。
尝试类似的东西xset m 100 5
,让它去非常对我来说很快。
该命令的语法是:
xset m <pixels to move when going fast> <pixels threshold before moving fast>
为了使改变持久,把它们放在你的~/.xinitrc
答案2
我不知道这是否是正确的方法,但改变加速度曲线从 0 到 6,并设置速度比例到 10,你可以得到一个非常快的指针。比你在“鼠标偏好设置“。操作方法如下:
首先,您需要找到您的鼠标 ID 和 ProductName:
xinput list
...
Logitech USB Optical Mouse id=11 [slave pointer (2)]
...
现在您可以使用以下命令将 AccelerationProfile 设置为 6:
xinput set-prop 11 "Device Accel Profile" 6
# 11 = DEVICE_ID
# 6 = linear (more speed, more acceleration)
然后将 VelocityScale 设置为适合您的数值。(1 到 10)(数值越高 = 速度越快):
xinput set-prop 11 "Device Accel Velocity Scaling" 5
如果上述解决方案对您有用,您可以通过编辑 xorg.conf ( /etc/X11/xorg.conf
) 使其持久化。在文件末尾添加此部分。
Section "InputClass"
Identifier "Logitech" # Whatever you want.
MatchProduct "Logitech USB Optical Mouse" # ProductName from xinput list.
Option "AccelerationProfile" "6"
Option "VelocityScale" "5"
EndSection
重新启动后,您应该获得与 xinput 命令相同的结果。
如果有帮助的话请告诉我。
***已使用 Ubuntu 10.10 进行测试***
参考:
- man xorg.conf 输入设备部分
- http://xorg.freedesktop.org/wiki/Development/Documentation/PointerAcceleration