正如问题所述,我想禁用鼠标加速,但保留触摸板的加速。我使用全新安装的 Ubuntu 15.10 和 Unity。有人能帮忙吗?
答案1
有多种实用程序可用于使用鼠标加速(例如,xset m
更改所有连接的设备和xinput --set-ptr-feedback <device>
更改特定设备;有关更多详细信息,请参阅xset
和xinput
手册页),但这些设置将在重新启动时丢失。
更持久的解决方案是创建一个/usr/share/X11/xorg.conf.d/
名为60-mouse-no-accel.conf
以下内容的新文件
# Remove acceleration from actual mice (but not touchpads, etc)
Section "InputClass"
Identifier "Disable mouse acceleration"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
# Set mouse acceleration. Defaults to 2/1 4
# Query using xset q | grep -A 1 Pointer
# Set using xset m 2/1 4
# or using xinput --set-ptr-feedback <device> 4 2 1
# Set acceleration to zero to disable
Option "AccelerationNumerator" "0"
Option "AccelerationDenominator" "1"
Option "AccelerationThreshold" "4"
EndSection