我快速在谷歌上搜索了几次,看起来最近的讨论这件事发生在 2012 年。
我该如何在 Ubuntu 15.10 中禁用鼠标加速?我尝试安装 gpointing-device-settings,但出现很多错误。
我正在寻找一个持久的设置。
答案1
您可以通过运行以下命令使其变得简单易行:
xset m 00
这将完全关闭鼠标加速。
!#/bin/bash
xset m 00
将文件保存为.sh
脚本 - 使用 使其可执行chmod +x filename
,将其添加为程序中的启动程序Startup Applications
,就可以开始了!
答案2
以下(窃自r/linux_gaming)似乎有效:
sudo vim /usr/share/X11/xorg.conf.d/90-mouse.conf
并粘贴到其中:
Section "InputClass"
Identifier "mouse"
MatchIsPointer "on"
Option "AccelerationProfile" "-1"
Option "AccelerationScheme" "none"
EndSection
答案3
有一个 GUI 用于此,gpointing 设备设置:
sudo apt-get install gpointing-device-settings
此程序有几个功能在标准gnome-mouse-properties
配置对话框中缺失,例如高级触摸板滚动设置。如果您只需要调整加速度设置,请使用gnome-mouse-properties
。
如果您寻求CLI方式,xinput
将适合您的使用。
答案4
安装包 xserver-xorg-input-libinput:
apt-get install -y xserver-xorg-input-libinput
然后重新启动。