Add sth like this:
Code:
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "True"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizTwoFigerScroll" "True"
Option "VertTwoFingerScroll" "True"
Option "SHMConfig" "on"
EndSection
Adjust it to your needs... Google for xorg.conf synaptic..
Heres a list of possible Options. If you want to add one, simply append it to your section as above...
Code:
Section "InputDevice"
Identifier "touchpad"
Driver "synaptics"
# general settings
Option "CorePointer"
Option "Emulate3Buttons" "on"
Option "Device" "/dev/psaux"
#
# Synaptics options
#
# "auto-dev" (automatic, default), "psaux" (raw) or
# "event" (linux 2.5 kernel events)
Option "Protocol" "auto-dev"
#
# switch on/off shared memory for configuration
Option "SHMConfig" "on"
#
# coordinates for left/right/bottom/top `virtual' edge
Option "LeftEdge" "1900"
Option "RightEdge" "5400"
Option "BottomEdge" "4000"
Option "TopEdge" "1900"
#
# When finger pressure drops below this value, the
# driver counts it as a release.
Option "FingerLow" "25"
#
# When finger pressure goes above this value, the
# driver counts it as a touch.
Option "FingerHigh" "30"
#
# max. time (in milliseconds) for detecting a tap
Option "MaxTapTime" "180"
#
# max. movement of the finger for detecting a tap
Option "MaxTapMove" "220"
#
# max. time (in milliseconds) for detecting a double tap
#Option "MaxDoubleTapTime" "180"
#
# the duration of the mouse click generated by tapping
#Option "ClickTime" "100"
#
# Makes the driver react faster to a single tap, but
# also makes double clicks caused by double tapping slower.
#Option "FastTaps" "off"
#
# max time (in milliseconds) for middle button emulation.
Option "EmulateMidButtonTime" "20"
#
# move distance of the finger for a scroll event
Option "VertScrollDelta" "100"
#
# move distance of the finger for a scroll event
Option "HorizScrollDelta" "100"
#
# min./max./acceleration Speed factor
Option "MinSpeed" "0.02"
Option "MaxSpeed" "0.18"
Option "AccelFactor" "0.0010"
#
# finger pressure at which minimum edge motion speed is set
#Option "EdgeMotionMinZ" "30"
#
# finger pressure at which maximum edge motion speed is set
#Option "EdgeMotionMaxZ" "160"
#
# slowest setting for edge motion speed
#Option "EdgeMotionMinSpeed" "1"
#
# fastest setting for edge motion speed
#Option "EdgeMotionMaxSpeed" "400"
#
# If on, edge motion is also used for normal movements,
# if off, egde motion is used only when dragging
#Option "EdgeMotionUseAlways" "off"
#
# If on, the up/down buttons generate button 4/5 events.
# If off, the up button generates a double click and
# the down button generates a button 2 event.
Option "UpDownScrolling" "off"
#
# Switch off the touchpad. Valid values are:
# 0 : Touchpad is enabled
# 1 : Touchpad is switched off
# 2 : Only tapping is switched off
#Option "TouchpadOff" "0"
#
# switch on/off guest mouse (often a stick)
#Option "GuestMouseOff" "off"
#
# If off, a tap and drag gesture ends when you release
# the finger. If on, the gesture is active until you
# tap a second time.
Option "LockedDrags" "off"
#
# Mouse button actions for corners
# 0=No action, 1=Left Button, 2=Middle Button, 3=Right Button
Option "RTCornerButton" "1"
Option "RBCornerButton" "2"
Option "LTCornerButton" "3"
Option "LBCornerButton" "0"
#
# Which mouse button is reported on a non-corner n-finger tap
# 0=No action, 1=Left Button, 2=Middle Button, 3=Right Button
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
#
# If on, circular scrolling is used
Option "CircularScrolling" "1"
#
# Move angle (radians) of finger to generate a scroll event
#Option "CircScrollDelta" "0.1"
#
# Trigger region on the touchpad to start circular scrolling
# 0=All Edges, 1=Top Edge, 2=Top Right Corner, 3=Right Edge,
# 4=Bottom Right Corner, 5=Bottom Edge, 6=Bottom Left Corner,
# 7=Left Edge, 8=Top Left Corner
Option "CircScrollTrigger" "3"
#
# Instead of being a rectangle, the edge is the ellipse
# enclosed by the Left/Right/Top/BottomEdge parameters.
# For circular touchpads.
Option "CircularPad" "off"
#
# If palm detection should be enabled
Option "PalmDetect" "on"
#
# Minimum width at which touch is considered a palm
#Option "PalmMinWidth" "10"
#
# Minimum finger pressure at which touch is considered a palm
#Option "PalmMinZ" "200"
#
# Coasting threshold scrolling speed. 0 disables coasting.
#Option "CoastingSpeed" "0"
EndSection