在 Ubuntu 16.04 中禁用鼠标加速
其实升级到 Ubuntu 16.04 之后,打 Doto 都不愉快了。
为什么?因为这傻吊系统默认开启了鼠标加速。
加速你麻痹,关了关了。
sudo vim /usr/share/X11/xorg.conf.d/90-mouse.conf
创建单独的配置文件,禁用鼠标加速:
Section "InputClass"
Identifier "mouse"
MatchIsPointer "on"
Option "AccelerationProfile" "-1"
Option "AccelerationScheme" "none"
EndSection
保存后重启
就 OK 了,无法理解为什么要启用鼠标加速这么傻逼的功能。
来源:
Disable mouse acceleration in Ubuntu 15.10
[TechSupport] Weird mouse after update from Ubuntu 15.04 to Ubuntu 15.10