Skip to content

鼠标滚动迟缓

解决方案

若使用的是X11, 可以尝试修改X11的配置文件. 以Archlinux为例, 在/etc/X11/xorg.conf.d下新建配置文件0-mice.conf, 输入以下内容:

Section "InputDevice"
 
    Identifier "Configured Mouse"
    Driver "vmmouse"
    Option "Protocol" "ImPS/2"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5"
    Option "Emulate3Buttons" "yes"
 
EndSection

参考资料

https://blog.csdn.net/guoqignrus/article/details/117755322

采用 CC BY-NC 4.0 许可证发布