Skip to content

Instantly share code, notes, and snippets.

@Airr
Created March 30, 2013 05:59
Show Gist options
  • Save Airr/5275579 to your computer and use it in GitHub Desktop.
Save Airr/5275579 to your computer and use it in GitHub Desktop.
Sane Synaptics Touchpad configuration. Say goodbye to jumpy, bumpy and inaccurate cursor movement. Put this in /etc/X11/xorg.conf.d/10-synaptics.conf
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "ClickPad" "1"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "ClickFinger1" "1"
Option "ClickFinger2" "3"
Option "ClickFinger3" "2"
Option "VertTwoFingerScroll" "1"
Option "HorizTwoFingerScroll" "1"
Option "VertScrollDelta" "50"
Option "HorizScrollDelta" "60"
Option "EmulateMidButtonTime" "0"
Option "EdgeMotionMinSpeed" "30"
Option "EdgeMotionMaxZ" "60"
Option "FingerLow" "25"
Option "MaxTapTime" "180"
Option "FingerHigh" "38"
Option "MaxTapMove" "100"
Option "MaxDoubleTapTime" "200"
Option "ClickTime" "60"
Option "AccelFactor" "0.04"
Option "LockedDrags" "1"
Option "LockedDragTimeout" "250"
Option "PalmDetect" "1"
Option "PalmMinWidth" "10"
Option "PalmMinZ" "130"
Option "CoastingSpeed" "0.5"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment