We are still actively working on the spam issue.

Tweaking Linux

From InstallGentoo Wiki
Revision as of 12:30, 5 December 2015 by Galactus (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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"
         Driver "libinput"
         MatchIsPointer "yes"
         Option "AccelProfile" "flat"
 EndSection

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