Created
February 6, 2013 01:45
-
-
Save iberianpig/4719487 to your computer and use it in GitHub Desktop.
/etc/X11/xorg.conf.d/50-synaptics.conf
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 "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