如何在Ubuntu 18.04上禁用鼠标加速


11

我的鼠标具有鼠标加速功能,在ubuntu 18.04中速度过快。在中
创建无效。 当gnome从xorg切换到wayland时,这些文件将不再起作用。 还有另一种方法可以在ubuntu中禁用鼠标加速吗?90-mouse.confxorg.conf.d
xorg.conf

Answers:


19

Ubuntu使用gnome,而gnome使用dconf(充满设置的“数据库”)。

如何:

  • 安装dconf-editor
    • sudo apt install dconf-editor 通过终端或
    • Dconf Editor在Ubuntu软件中搜索
  • 打开dconf编辑器,然后转到org-> gnome-> desktop-> peripherals->mouse

这是鼠标设置。

  • accel-profile- >设置您想要的加速度
  • 速度 ->设置鼠标速度

您在accel-profile中有以下选项:

  • 默认
  • 又名。禁用鼠标加速
  • 适应性

禁用鼠标加速:

  • 设置Use default valueoff
  • 设置Custom valueflat

更改鼠标速度:

  • org/gnome/desktop/peripherals/mouse/speed
  • 设置Use default valueoff
  • 将更Custom value改为适合您
    的数字(该数字可以在-1和1之间)

这不会影响Lubuntu或其他口味。
Calmarius

0

我找到了可以直接从终端使用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。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.