一直觉得ubuntu的鼠标指针比较飘,图形界面上调整灵敏度调到最低也不准,因为鼠标设置里面没有提供其他可调整选项,目前找到一个解决办法是调整鼠标加速度。
各版本调整方法链接:https://patrickmn.com/aside/lowering-gaming-mouse-sensitivity-in-ubuntu-9-10/
具体如下:
1、xinput –list –short
会打开一个设备列表:
2、xinput –set-prop “pointer:Logitech M705” “Device Accel Velocity Scaling” 1
找到自己的鼠标,这里我的叫Logitech M705,输入此命令设置鼠标加速度为1即取消加速度。
3、xinput –list-props “pointer:Logitech M705”
可查看设备状态,可以看到加速度的值已改为1。
当然还可以修改其他几个参数,配合图形界面的鼠标速度调整使用,找到一个自己感觉不错的组合。
我的设置是:
鼠标灵敏度1/3左右,
xinput –set-prop “pointer:Logitech M705” “Device Accel Adaptive Deceleration” 1.2
xinput –set-prop “pointer:Logitech M705” “Device Accel Constant Deceleration” 1.1
xinput –set-prop “pointer:Logitech M705” “Device Accel Velocity Scaling” 1
由于这个命令是即时生效,重启失效,可加入启动脚本里。