一直觉得Ubuntu下鼠标用的不太舒服,移动速度太快不适应。于是找到相关资料修改了下。
- 查看设备列表:
xinput --list
- 设置设备的属性:
xinput set-prop <device> [--type=atom|float|int] [--format=8|16|32] <property> <val> [<val> ...]
- 设置鼠标移动速度:
xinput --set-prop "pointer:MOSART Semi. 2.4G Keyboard Mouse" "Device Accel Constant Deceleration" 1.5
至于数值是多少,可以根据不同电脑来尝试,我的电脑设置1.5左右就可以了。
输完命令后,应该就有效果了,鼠标速度应该变了。但是重启后,又失效了。所以我们要设置开机启动项文件。
- 在/etc/profile.d文件夹下建立名为mouse的shell文件:
sudo nano /etc/profile.d/mouse.sh
- 输入以下两行命令:
xinput --set-prop "pointer:MOSART Semi. 2.4G Keyboard Mouse" "Device Accel Constant Deceleration" 1.5xinput --set-prop "pointer:MOSART Semi. 2.4G Keyboard Mouse" "Device Accel Velocity Scaling" 1复制代码
开机后,再看鼠标设置面板就有设置项了,可以调节鼠标速度。