禁用触摸板加速(libinput)

禁用触摸板加速(libinput)

我正在使用 libinput 为触摸板供电。我想像鼠标一样在不使用加速的情况下使用它(Manjaro 默认提供),因此我尝试修改 /usr/share/X11/xorg.conf.d/40-libinput.conf 文件:

 Section "InputClass"
    Identifier "libinput touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "AccelerationProfile" "-1"
    Option "AccelerationScheme" "none"
    Option "AccelSpeed" "-1"
 EndSection

但这 3 个选项只会让我的指针变得很慢,并且不会关闭加速。(根据https://unix.stackexchange.com/questions/392749/mouse-touchpad-acceleration-disabling-not-workinghttp://www.webupd8.org/2016/08/how-to-completely-disable-mouse.html

相关内容