Section "Module"
    Load        "dbe"  	# Double buffer extension
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

    Load        "freetype"
    Load        "glx"
    Load	"synaptics"
    Load        "dri"
EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"
    FontPath   "/usr/share/fonts/misc"
    FontPath   "/usr/share/fonts/75dpi"
    FontPath   "/usr/share/fonts/100dpi"
    FontPath   "/usr/share/fonts/Type1"
EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"
    Option "blank time" "10"
    Option "standby time" "12"
    Option "suspend time" "13"
    Option "off time" "14"
EndSection

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"
    Identifier	"Keyboard1"
    Driver	"kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules"	"xorg"
    Option "XkbModel"	"hpnx26"
    Option "XkbLayout"	"us"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

 Section "InputDevice"
   Identifier  	"Touchpad"
   Driver  	"synaptics"
   Option	"CorePointer"
   Option 	"Device"  	"/dev/psaux"
   Option	"Protocol"	"auto-dev"
   Option	"LeftEdge"      "1500"
   Option	"RightEdge"     "5900"
   Option	"TopEdge"       "1650"
   Option	"BottomEdge"    "4500"
   Option	"SHMConfig"	"on"
   Option	"RTCornerButton"	"3"
   Option	"RBCornerButton"	"2"
   Option	"EdgeMotionUseAlways"	"1"
   Option	"TapButton1"	"1"
   Option	"TapButton2"	"3"
   Option	"TapButton3"	"2"
   Option	"PalmDetect"	"1"
   Option	"PalmMinZ"	"150"
   Option	"FingerLow"	"25"
   Option	"FingerHigh"	"30"
   Option	"MaxTapTime"	"180"
   Option	"MaxTapMove"	"220"
   Option	"VertScrollDelta" "100"
   Option	"HorizScrollDelta" "100"
   Option	"MinSpeed"	"0.06"
   Option	"MaxSpeed"	"0.15"
   Option	"AccelFactor" "0.0015"
 EndSection

 Section "InputDevice" 
  Identifier   "USBMouse"
   Driver       "mouse"
   Option       "Buttons" "5"
   Option       "Device" "/dev/input/mice"
   Option       "Name" "Autodetected"
   Option       "Protocol" "auto"
   Option       "Vendor" "AutoDetected"
   Option       "ZAxisMapping" "4 5"
  EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

   Section "Monitor"
    Identifier  "My Monitor"
    HorizSync	45-80
    VertRefresh	50-100
    Option		"DPMS"
   EndSection

# **********************************************************************
# Graphics device section
# **********************************************************************

Section "Device"
    Identifier	"Standard VGA"
    VendorName	"Unknown"
    BoardName	"Unknown"
    Driver     "vga"
EndSection

Section "Device"
    Identifier  "Intel i810"
    VendorName  "Intel"
    Driver      "i810"
EndSection


# **********************************************************************
# Screen sections
# **********************************************************************

Section "Screen"
    Identifier  "Screen 1"
    Device      "Intel i810"
    Monitor     "My Monitor"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

Section "ServerLayout"
    Identifier     "Simple Layout"
    Screen         "Screen 1"
    InputDevice    "Touchpad"  "CorePointer"
    InputDevice    "USBMouse"  "SendCoreEvents"
    InputDevice    "Keyboard1" "CoreKeyboard"
EndSection

Section "Extensions"
    Option         "XVideo"    "true"
EndSection

Section "DRI"
    Mode           0666
EndSection
