We are still actively working on the spam issue.

Difference between revisions of "Tweaking Linux"

From InstallGentoo Wiki
Jump to: navigation, search
(Created page with "{{stub}} This article was created for Linux users to share tips and tricks with each other. =Xorg server= == Disable mouse acceleration in X == In order to disable mouse acc...")
 
(Disable mouse acceleration in X)
Line 10: Line 10:
 
   Section "InputClass"
 
   Section "InputClass"
 
           Identifier "My Mouse"
 
           Identifier "My Mouse"
           Driver "libinput"
+
           Option "AccelerationNumerator" "1"
           MatchIsPointer "yes"
+
           Option "AccelerationDenominator" "1"
           Option "AccelProfile" "flat"
+
           Option "AccelerationThreshold" "0"
 +
 
 
   EndSection
 
   EndSection
  
 
Your config file will take effect the next time you start X.
 
Your config file will take effect the next time you start X.

Revision as of 13:52, 6 December 2015

This article was created for Linux users to share tips and tricks with each other.

Xorg server

Disable mouse acceleration in X

In order to disable mouse acceleration use your text editor of choice to create:

 /etc/X11/xorg.conf.d/50-mouse-acceleration.conf

 Section "InputClass"
         Identifier "My Mouse"
         Option "AccelerationNumerator" "1"
         Option "AccelerationDenominator" "1"
         Option "AccelerationThreshold" "0"
 EndSection

Your config file will take effect the next time you start X.