Created
June 20, 2010 20:37
-
-
Save yeban/446078 to your computer and use it in GitHub Desktop.
My xorg.conf with tapping enabled on dell inspiron 1525 running debian.
This file contains hidden or 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 "ServerLayout" | |
Identifier "X.org Configured" | |
Screen 0 "Screen0" 0 0 | |
InputDevice "Mouse0" "CorePointer" | |
InputDevice "Keyboard0" "CoreKeyboard" | |
InputDevice "touchpad" "AlwaysCore" | |
EndSection | |
Section "Files" | |
ModulePath "/usr/lib/xorg/modules" | |
FontPath "/usr/share/fonts/X11/misc" | |
FontPath "/usr/share/fonts/X11/cyrillic" | |
FontPath "/usr/share/fonts/X11/100dpi/:unscaled" | |
FontPath "/usr/share/fonts/X11/75dpi/:unscaled" | |
FontPath "/usr/share/fonts/X11/Type1" | |
FontPath "/usr/share/fonts/X11/100dpi" | |
FontPath "/usr/share/fonts/X11/75dpi" | |
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" | |
FontPath "built-ins" | |
EndSection | |
Section "Module" | |
Load "extmod" | |
Load "record" | |
Load "dbe" | |
Load "glx" | |
Load "dri" | |
Load "dri2" | |
Load "synaptics" | |
Load "evdev" | |
EndSection | |
Section "InputDevice" | |
Identifier "Keyboard0" | |
Driver "kbd" | |
EndSection | |
Section "InputDevice" | |
Identifier "Mouse0" | |
Driver "mouse" | |
Option "Protocol" "auto" | |
Option "Device" "/dev/input/mice" | |
Option "ZAxisMapping" "4 5 6 7" | |
EndSection | |
Section "InputDevice" | |
Identifier "touchpad" | |
Driver "synaptics" | |
Option "Device" "/dev/input/mouse0" | |
Option "Protocol" "auto-dev" | |
Option "LeftEdge" "130" | |
Option "RightEdge" "840" | |
Option "TopEdge" "130" | |
Option "BottomEdge" "640" | |
Option "FingerLow" "7" | |
Option "FingerHigh" "8" | |
Option "MaxTapTime" "180" | |
Option "MaxTapMove" "110" | |
Option "EmulateMidButtonTime" "75" | |
Option "VertScrollDelta" "20" | |
Option "HorizScrollDelta" "20" | |
Option "MinSpeed" "0.40" | |
Option "MaxSpeed" "0.60" | |
Option "AccelFactor" "0.050" | |
Option "EdgeMotionMinSpeed" "200" | |
Option "EdgeMotionMaxSpeed" "200" | |
Option "UpDownScrolling" "1" | |
Option "CircularScrolling" "1" | |
Option "CircScrollDelta" "0.1" | |
Option "CircScrollTrigger" "2" | |
Option "SHMConfig" "on" | |
Option "TapButton1" "1" | |
Option "TapButton2" "2" | |
Option "TapButton3" "3" | |
Option "FastTaps" "1" | |
Option "Emulate3Buttons" "on" | |
EndSection | |
Section "Monitor" | |
Identifier "Monitor0" | |
VendorName "Monitor Vendor" | |
ModelName "Monitor Model" | |
EndSection | |
Section "Device" | |
### Available Driver options are:- | |
### Values: <i>: integer, <f>: float, <bool>: "True"/"False", | |
### <string>: "String", <freq>: "<f> Hz/kHz/MHz" | |
### [arg]: arg optional | |
#Option "NoAccel" # [<bool>] | |
#Option "SWcursor" # [<bool>] | |
#Option "ColorKey" # <i> | |
#Option "CacheLines" # <i> | |
#Option "Dac6Bit" # [<bool>] | |
#Option "DRI" # [<bool>] | |
#Option "NoDDC" # [<bool>] | |
#Option "ShowCache" # [<bool>] | |
#Option "XvMCSurfaces" # <i> | |
#Option "PageFlip" # [<bool>] | |
Identifier "Card0" | |
Driver "intel" | |
VendorName "Intel Corporation" | |
BoardName "Mobile GM965/GL960 Integrated Graphics Controller" | |
BusID "PCI:0:2:0" | |
EndSection | |
Section "Screen" | |
Identifier "Screen0" | |
Device "Card0" | |
Monitor "Monitor0" | |
SubSection "Display" | |
Viewport 0 0 | |
Depth 1 | |
EndSubSection | |
SubSection "Display" | |
Viewport 0 0 | |
Depth 4 | |
EndSubSection | |
SubSection "Display" | |
Viewport 0 0 | |
Depth 8 | |
EndSubSection | |
SubSection "Display" | |
Viewport 0 0 | |
Depth 15 | |
EndSubSection | |
SubSection "Display" | |
Viewport 0 0 | |
Depth 16 | |
EndSubSection | |
SubSection "Display" | |
Viewport 0 0 | |
Depth 24 | |
EndSubSection | |
EndSection | |
Section "InputDevice" | |
Driver "synaptics" | |
Identifier "touchpad" | |
Option "Device" "/dev/input/mouse1" | |
Option "Protocol" "auto-dev" | |
Option "LeftEdge" "130" | |
Option "RightEdge" "840" | |
Option "TopEdge" "130" | |
Option "BottomEdge" "640" | |
Option "FingerLow" "7" | |
Option "FingerHigh" "8" | |
Option "MaxTapTime" "180" | |
Option "MaxTapMove" "110" | |
Option "EmulateMidButtonTime" "75" | |
Option "VertScrollDelta" "20" | |
Option "HorizScrollDelta" "20" | |
Option "MinSpeed" "0.25" | |
Option "MaxSpeed" "0.50" | |
Option "AccelFactor" "0.030" | |
Option "EdgeMotionMinSpeed" "200" | |
Option "EdgeMotionMaxSpeed" "200" | |
Option "UpDownScrolling" "1" | |
Option "CircularScrolling" "1" | |
Option "CircScrollDelta" "0.1" | |
Option "CircScrollTrigger" "2" | |
Option "SHMConfig" "on" | |
#always usefull | |
Option "Emulate3Buttons" "on" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment