Skip to content

Instantly share code, notes, and snippets.

@iberianpig
Created February 6, 2013 01:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iberianpig/4719487 to your computer and use it in GitHub Desktop.
Save iberianpig/4719487 to your computer and use it in GitHub Desktop.
/etc/X11/xorg.conf.d/50-synaptics.conf
Section "InputClass"
Identifier "evdev touchpad catchall"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
MatchIsTouchpad "on"
Option "Protocol" "event"
Option "SHMConfig" "on"
###CUSTOMIZE SECTION###
Option "GrabEventDevice" "on"
Option "FingerLow" "10" # touchpad sensitivity
Option "FingerHigh" "40" # touchpad sensitivity
Option "MinSpeed" "0.4" # min speed
Option "MaxSpeed" "1" # Max speed
Option "AccelFactor" "0.4" # cursor acceleration
Option "EmulateTwoFingerMinW" "1" # two fingers min width
Option "EmulateTwoFingerMinZ" "1" # two fingers min pressure
Option "HorizScrollDelta" "15" # horizontal scroll threshold value
Option "HorizTwoFingerScroll" "1" # two fingers horizontal scroll
Option "VertScrollDelta" "15" # vertical scroll threshold value
Option "VertTwoFingerScroll" "1" # two fingers vertical scroll
Option "TapButton1" "1" # 1finger tap=1:left click
Option "VertHysteresis" "0" # min value of vertical motion event
Option "HorizHysteresis" "0" # min value of Horizontal motion event
Option "TapButton2" "3" # 2fingers tap=3:right click
Option "TapButton3" "2" # 3fingers tap=2:middle click
Option "PalmDetect" "1" # palm tap detect
Option "PalmMinWidth" "1" # palm tap detect
Option "PalmMinZ" "50" # palm tap detect
Option "AreaRightEdge" "1000" # touchpad right edge
Option "AreaTopEdge" "60" # touchpad top edge
Option "AreaLeftEdge" "60" # touchpad right edge
Option "FastTaps" "0" #
Option "MaxTapTime" "100" # set tap threshold maximum time
Option "MaxTapMove" "10" # set tap threshold maximum movement of finger
Option "MaxDoubleTapTime" "100" # set tap threshold maximum time
Option "VertEdgeScroll" "0"
Option "HorizEdgeScroll" "0"
###CUSTOMIZE SECTION END###
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment