Synaptics Touchpad

I've been fine-tuning my Synaptics touchpad yesterday, now it's come to my liking (after I tempted to be not-so-keyboard-crusader). The MAN page sure helps a lot.

Mine is quite old so it doesn't have multi-tap function (you can try monitoring "F" parameter on synclient -m). So here's my xorg.conf, hope it'll be useful someday :D

Section "InputDevice"
Identifier "Pad1"
Driver "synaptics"
Option "Protocol" "auto-dev"
Option "Device" "/dev/tp1"
Option "SHMConfig" "on"
Option "SendCoreEvents"
#edges boundary
Option "LeftEdge" "1700"
Option "RightEdge" "5300"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
#delays, speed, etc
Option "FingerLow" "20"
Option "FingerHigh" "35"
Option "MaxTapTime" "180"
Option "MaxTapMove" "260"
Option "MaxDoubleTapTime" "130"
Option "ClickTime" "120"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.09"
Option "MaxSpeed" "0.18"
Option "AccelFactor" "0.002"
Option "EmulateMidButtonTime" "100" #press Lbutton and Rbutton simultaneously
#tap buttons
Option "TapButton1" "1"
# Option "TapButton2" "2" // no multi-tap
# Option "TapButton3" "3" // no multi-tap
#corner taps
# Option "LTCornerButton" "1"
# Option "RTCornerButton" "2"
# Option "LBCornerButton" "2"
Option "RBCornerButton" "3"
# multi-taps :( mine doesn't have such feature
# Option "Emulate2Buttons" "true"
# Option "Emulate3Buttons" "true"
# Option "EmulateTwoFingerMinZ" "120" # this may vary between different machines
# Option "EmulateThreeFingerMinZ" "120" # this may vary between different machines
# scrolling
Option "UpDownScrolling" "true"
Option "LeftRightScrolling" "true"
Option "VertEdgeScroll" "true" # enable vertical scroll zone
Option "HorizEdgeScroll" "true" # enable horizontal scroll zone
Option "VertTwoFingerScroll" "true" # vertical scroll anywhere with two fingers
Option "HorizTwoFingerScroll" "true" # horizontal scroll anywhere with two fingers
Option "CircularScrolling" "1"
Option "CircScrollDelta" "0.5"
Option "CircScrollTrigger" "7" # I like it from the left
Option "CornerCoasting" "true" # enable continuous scroll with finger in corner
Option "CoastingSpeed" "0.23" # corner coasting speed
Option "EdgeMotionMinSpeed" "150"
Option "EdgeMotionMaxSpeed" "200"

EndSection

0 rants: