Created
June 12, 2014 23:50
-
-
Save robdaemon/e80e8db27b3e0167c79e to your computer and use it in GitHub Desktop.
My Synaptics config for a ThinkPad W540 on Xubuntu 14.04. This goes into /etc/X11/xorg.conf.d - you should create the folder if it doesn't exist.
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 "nathan touchpad catchall" | |
| MatchIsTouchpad "on" | |
| MatchDevicePath "/dev/input/event*" | |
| Driver "synaptics" | |
| # three fingers for the middle button | |
| Option "TapButton3" "2" | |
| # drag lock | |
| Option "LockedDrags" "1" | |
| # accurate tap-to-click! | |
| Option "FingerLow" "50" | |
| Option "FingerHigh" "55" | |
| # prevents too many intentional clicks | |
| Option "PalmDetect" "1" | |
| Option "PalmMidWidth" "5" | |
| Option "PalmMinZ" "60" | |
| Option "VertTwoFingerScroll" "1" | |
| Option "VertScrollDelta" "75" | |
| Option "HorizTwoFingerScroll" "1" | |
| Option "HorizScrollDelta" "75" | |
| Option "MinSpeed" "1" | |
| Option "MaxSpeed" "1" | |
| Option "AccelerationProfile" "2" | |
| Option "ConstantDeceleration" "4" | |
| EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment