Created
October 7, 2013 16:14
-
-
Save ahawthorne/6870571 to your computer and use it in GitHub Desktop.
Default touchpad configuration in Fedora (and Linux in gerneral) is pretty frustrating. This configuration should provide palm detection, scroll coasting, tap-to-click (without jumpiness), two-finger scrolling, and three-finger middle click Place this file in /etc/X11/xord.conf.d/. Set owner and group to root, permissions to 644.
This file contains 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 "Touchpad" | |
Driver "synaptics" | |
MatchIsTouchpad "on" | |
Option "PalmDetect" "1" | |
Option "PalmMinWidth" "1" | |
Option "PalmMinZ" "1" | |
Option "VertScrollDelta" "40" | |
Option "HorizScrollDelta" "40" | |
Option "CoastingSpeed" "1" | |
Option "CoastingFriction" "60" | |
Option "TapButton1" "1" | |
Option "TapButton2" "3" | |
Option "TapButton3" "2" | |
Option "VertTwoFingerScroll" "1" | |
Option "HorizTwoFingerScroll" "1" | |
Option "FingerHigh" "45" | |
Option "FingerLow" "40" | |
Option "EmulateMidButtonTime" "180" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment