atfa 发表于 2005-9-29 11:46:59

鼠标触摸板驱动Synaptics自带的参考配置文件

http://web.telia.com/~u89404340/touchpad/index.html

http://web.telia.com/~u89404340/touchpad/xorg.conf


Section "ServerLayout"
        Identifier   "Default Layout"
        Screen      0"Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "TouchPad" "AlwaysCore"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "ServerFlags"
        Option          "DontZap"
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        FontPath   "unix/:7100"
EndSection

Section "Module"
        Load"dbe"
        Load"extmod"
        Load"fbdevhw"
        Load"glx"
        Load"record"
        Load"freetype"
        Load"type1"
        Load"dri"
        Load"synaptics"
EndSection

Section "InputDevice"
        Identifier"Keyboard0"
        Driver      "kbd"
        Option          "XkbModel" "pc105"
        Option          "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier"Mouse0"
        Driver      "mouse"
        Option          "Protocol" "ExplorerPS/2"
        Option          "Device" "/dev/input/mice"
        Option          "Buttons" "7"
        Option          "ZAxisMapping" "6 7"
EndSection

Section "InputDevice"
Driver        "synaptics"
Identifier        "TouchPad"
Option        "Device"        "/dev/psaux"
Option        "Protocol"        "auto-dev"
Option        "LeftEdge"      "1700"
Option        "RightEdge"   "5300"
Option        "TopEdge"       "1700"
Option        "BottomEdge"    "4200"
Option        "FingerLow"        "25"
Option        "FingerHigh"        "30"
Option        "MaxTapTime"        "180"
Option        "MaxTapMove"        "220"
Option        "VertScrollDelta" "100"
Option        "MinSpeed"        "0.09"
Option        "MaxSpeed"        "0.18"
Option        "AccelFactor"        "0.0015"
Option        "SHMConfig"        "on"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "LCD Panel 1280x800"
        HorizSync    31.5 - 48.5
        VertRefresh40.0 - 70.0
        Option          "dpms"
EndSection

Section "Device"
        Identifier"Videocard0"
        Driver      "radeon"
        VendorName"ATI"
        BoardName   "ATI Mobility Radeon 9200"
        Option      "AGPMode" "4"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device   "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth   24
        SubSection "Display"
                Viewport   0 0
                Depth   24
                Modes    "1280x800" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "DRI"
        Group      0
        Mode         0666
EndSection
页: [1]
查看完整版本: 鼠标触摸板驱动Synaptics自带的参考配置文件