Last active
November 15, 2016 13:58
-
-
Save strohel/f4b9d343c915c1e515c64d8a6818cd11 to your computer and use it in GitHub Desktop.
/etc/X11/xorg.conf.d/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "Device" | |
| Identifier "Device0" | |
| Driver "intel" | |
| Option "AccelMethod" "SNA" | |
| # prevent KDE Plasma CPU usage, https://wiki.gentoo.org/wiki/Intel#KDE.27s_plasma_eating_CPU | |
| Option "TearFree" "true" | |
| EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "synaptics touchpad catchall" | |
| MatchIsTouchpad "on" | |
| MatchDevicePath "/dev/input/event*" | |
| Driver "synaptics" | |
| Option "SHMConfig" "True" | |
| Option "RTCornerButton" "0" # 2 is default | |
| Option "RBCornerButton" "0" # 3 is default | |
| Option "HorizTwoFingerScroll" "1" | |
| Option "VertTwoFingerScroll" "1" | |
| Option "HorizEdgeScroll" "1" | |
| Option "VertEdgeScroll" "1" | |
| Option "TapButton1" "1" | |
| Option "TapButton2" "2" | |
| Option "TapButton3" "3" | |
| Option "CoastingSpeed" "20" # 0 (disabled) is default | |
| EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "Logitech receiver" | |
| MatchIsPointer "on" | |
| MatchDevicePath "/dev/input/event*" | |
| MatchProduct "Logitech USB Receiver" | |
| Option "AccelerationProfile" "3" # smooth linear (soft knee, then linear) | |
| Option "ConstantDeceleration" "2" # halve mouse dpi without sacrificing accuracy | |
| EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "Logitech USB Laser Mouse" | |
| MatchIsPointer "on" | |
| MatchDevicePath "/dev/input/event*" | |
| MatchProduct "Logitech USB Laser Mouse" | |
| Option "AccelerationProfile" "3" # smooth linear (soft knee, then linear) | |
| Option "ConstantDeceleration" "2" # halve mouse dpi without sacrificing accuracy | |
| EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "Any Pointer Mouse" | |
| MatchIsPointer "on" | |
| MatchDevicePath "/dev/input/event*" | |
| Option "Emulate3Buttons" "False" | |
| Option "EmulateWheel" "True" # for faster scrolling | |
| Option "EmulateWheelButton" "2" # middle mouse button | |
| Option "XAxisMapping" "6 7" # left right | |
| Option "YAxisMapping" "4 5" # up down | |
| EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "Bamboo Tablet" | |
| MatchDevicePath "/dev/input/event*" | |
| MatchProduct "Wacom" | |
| Option "Button2" "4" | |
| Option "Button3" "5" | |
| EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment