如何在 Debian 上禁用鼠标加速?

如何在 Debian 上禁用鼠标加速?

我尝试导航到这里:/usr/share/X11/xorg.conf.d/90-mouse.conf/

但是这个目录下没有90-鼠标.conf

如何禁用鼠标加速?

答案1

  • 创建一个新的空文件

    sudo nano /usr/share/X11/xorg.conf.d/50-mouse-acceleration.conf

  • 将以下行粘贴到文件中


Section "InputClass"
    Identifier "my_mouse"
    MatchIsPointer "yes"
    Option "AccelerationProfile" "-1"
    Option "AccelerationScheme" "none"
    Option "AccelSpeed" "-1"
EndSection

  • 注销并登录(重新启动会话)

更多示例可以在这里找到:设置鼠标加速度(但请注意,Linux 发行版中 .conf 文件的路径不同)

相关内容