Ubuntu的新版本带来了一个新的鼠标设置窗口。但是,它只列出了灵敏度设置,没有加速。加速度的设置在哪里?我怎么禁用它?
如果我使用xinput禁用加速(例如xinput set-prop 15 270 1,它将加速度乘数设置为1),如果我断开并重新连接鼠标,以及重新启动,它也会返回。有办法绕过这事吗?
发布于 2013-04-29 01:57:34
你试过使用xinput吗?例如:
xinput --listxinput --list-props #deviceidxinput --set-prop #deviceid #propid value发布于 2013-10-29 19:49:16
为了生存重新启动,首先,创建脚本:
echo -e '#!/bin/bash\nxinput --set-prop 15 270 1' > mouse_acceleration_1.sh使其可执行:
chmod +x mouse_acceleration_1.sh那就跑
gnome-session-properties并将此脚本添加到列表中。
(我在这里找到了这个答案:降低老鼠的敏感度)
如果你重新连接你的鼠标,它可能不会起作用。
https://askubuntu.com/questions/285970
复制相似问题