Answers:
Ubuntu使用gnome,而gnome使用dconf(充满设置的“数据库”)。
如何:
sudo apt install dconf-editor
通过终端或Dconf Editor
在Ubuntu软件中搜索org
-> gnome
-> desktop
-> peripherals
->mouse
这是鼠标设置。
您在accel-profile中有以下选项:
禁用鼠标加速:
Use default value
为off
Custom value
为flat
更改鼠标速度:
org/gnome/desktop/peripherals/mouse/speed
Use default value
为off
Custom value
改为适合您我找到了可以直接从终端使用gsettings
命令的解决方案。
# displays what this setting represents
gsettings describe org.gnome.desktop.peripherals.mouse accel-profile
# displays the values it accepts as input
gsettings range org.gnome.desktop.peripherals.mouse accel-profile
# sets the accelleration profile to 'flat'
gsettings set org.gnome.desktop.peripherals.mouse accel-profile 'flat'
我之所以选择这个解决方案,是因为我偶然发现了https://developer.gnome.org/GSettings/#gsettings,上面写着。
要修改dconf后端存储本身,请使用dconf工具。但应该优先使用gsettings。
此答案中的命令使用gsettings而不是dconf。
这没有帮助我(也许是由于MATE),这是另一种解决方案:
图形设置已统一。将加速度和灵敏度都移到中间,然后单击关闭。重新打开鼠标首选项,并根据需要调整加速度和灵敏度。
参考:https : //ubuntu-mate.community/t/mouse-too-fast-in-18-04-again-known-methods-stopped-working/18805