Skip to content

Instantly share code, notes, and snippets.

@Mulperi
Created June 6, 2019 17:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mulperi/59908956cfcfa3159927e71f2641327f to your computer and use it in GitHub Desktop.
Save Mulperi/59908956cfcfa3159927e71f2641327f to your computer and use it in GitHub Desktop.
Disable mouse acceleration Linux centOS Gnome
sudo nano /usr/share/X11/xorg.conf.d/50-mouse-acceleration.conf
# paste the following
Section "InputClass"
Identifier "My Mouse"
MatchIsPointer "yes"
Option "AccelerationProfile" "-1"
Option "AccelerationScheme" "none"
Option "AccelSpeed" "-1"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment