如何改变鼠标速度/灵敏度?

如何改变鼠标速度/灵敏度?

我在 Ubuntu 12.10 上使用华硕 Zenbook UX32VD。在 12.04 和 12.10 中,我都无法更改鼠标速度(即鼠标/触摸板对话框中的“灵敏度”)。我可以更改滑块,但没有任何变化。

这对我来说是个大问题,因为鼠标速度有点慢。有什么建议吗?

触摸板和鼠标都存在该问题。

答案1

首先,我们需要确定要改变速度/灵敏度的输入device ID。打开终端并运行以下命令:

xinput --list --short

输出:

abcd@abcd-abcde:~$ xinput --list --short

Virtual core pointer

↳ SynPS/2 Synaptics TouchPad                id=11   [slave  pointer  (2)]

↳ Logitech USB RECEIVER                     id=12   [slave  pointer  (2)]

我的指点设备是Logitech USB RECEIVERSynaptics TouchPad。列出设备属性:

xinput --list-props "SynPS/2 Synaptics TouchPad"

编辑:

另一种选择: xinput --list-props 1111其父属性(SynPS/2 Synaptic TouchPad)中上面显示的数字一样。

现在降低其属性值以满足您的需要:

Device Accel Constant Deceleration (267):   2.500000

使用此命令:

xinput --set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 1.5

编辑:

另一种选择: 设备在xinput --set-prop 11 267 1.5哪里,就像上面一样,是设备属性的 id(设备加速度常数减速),当列出设备时您可以看到附加的所有属性,最后是您想要的速度。11267111.5

您可能需要稍微调整一下这个数字,才能将其设置得完全符合您的需要。

如果您需要在每次 Ubuntu 启动时自动设置此值,那么:

创建一个.sh 文件

#!/bin/sh

xinput --set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 1.5

将文件更改为可执行文件:

chmod +x

并将其放入启动应用程序列表中。

来源 :手动配置鼠标速度

答案2

Ubuntu 12.10 64 位,罗技无线 TrackMan

xinput 对我没什么作用。

xset q

检查设置

xset mouse 3 0

这会将加速度设置为 3,将阈值设置为零。设置不是很好,但比以前好多了。

如果要使用分数值,可以输入分数(即 3/2)而不是浮点数。

手册页说注销/重启时设置将会丢失。

答案3

上面提到的“设备加速...”选项在我的计算机上不存在。运行 Ubuntu 18.04 的联想 T440s

相反,我使用这些成功了:

xinput --set-prop "TPPS/2 IBM TrackPoint" "Coordinate Transformation Matrix" 0.5 0 0 0 0.5 0 0 0 1

原来的“坐标变换矩阵”是1 0 0 0 1 0 0 0 1,现在速度只有原来的一半,这对我来说已经够慢了。

通过这个语法,我们可以分别调整水平和垂直速度。

答案4

运行sudo xset m 1 1对我来说很有效。我的鼠标速度现在表现得像在 Windows 平台上一样正常。

相关内容