MOUSE-ACCEL(1)marcp.xyzMOUSE-ACCEL(1)

NAME

mouse-accel - Disable mouse accel in X11

DESCRIPTION

Disable mouse acceleration in X11

EXAMPLES

$ cat /usr/share/X11/xorg.conf.d/40-libinput.conf
[...]
Section "InputClass"
        Identifier "libinput pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "AccelProfile" "flat"  #<-- setting this to flat means no acceleration 🥰
EndSection
[...]

SEE ALSO

mouse-udev(1), gwolves-battery(1), display(1)

marcp.xyz2023-10-31MOUSE-ACCEL(1)