avaddon /xorg.conf

/etc/X11/xorg.conf
Section "Module"
    Load        "dbe"  	# Double buffer extension
    Load	"extmod"
#    Load        "type1"
    Load        "freetype"
#    Load        "xtt"
# This loads the GLX module
#    Load       "glx"
# This loads the DRI module
#    Load       "dri"
EndSection

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

Section "Files"
    RgbPath	"/usr/share/X11/rgb"
    FontPath   "/usr/share/fonts/misc/"
#    FontPath   "/usr/share/fonts/TTF/"
#    FontPath   "/usr/share/fonts/OTF"
#    FontPath   "/usr/share/fonts/Type1/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/75dpi/"
    FontPath   "/usr/share/fonts/efont-unicode/"
    FontPath   "/usr/share/fonts/terminus/"
#    FontPath   "/usr/lib/X11/fonts/local/"
#    FontPath   "/usr/lib/X11/fonts/misc/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/Speedo/"
#    FontPath   "/usr/lib/X11/fonts/Type1/"
#    FontPath   "/usr/lib/X11/fonts/TrueType/"
#    FontPath   "/usr/lib/X11/fonts/freefont/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/"
#    FontPath   "/usr/lib/X11/fonts/100dpi/"
#    ModulePath "/usr/lib/modules"
EndSection

Section "InputDevice"
    Identifier	"Keyboard1"
    Driver	"kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbOptions"  "grp:caps_toggle,grp_led:scroll"
    Option "XkbRules"	"xorg"
    Option "XkbModel"	"pc105"
    Option "XkbLayout"	"us,ru"
    Option "XkbVariant" ",winkeys"
EndSection

Section "InputDevice"
    Identifier	"Mouse1"
    Driver	"mouse"
    Option "Protocol"    "Auto"	# Auto detect
    Option "Device"      "/dev/input/mice"
    Option "ZAxisMapping"   "4 5 6 7"
    Option "Emulate3Buttons"
EndSection


Section "Monitor"
    Identifier  "My Monitor"
    Modeline "1280x800@60" 83.91 1280 1312 1624 1656 800 816 824 841
EndSection


Section "Device"
    Identifier  "* Generic VESA compatible"
    Driver      "openchrome"
    #VideoRam    262144
    # Insert Clocks lines here if appropriate
    Option "SWCursor" "true"
EndSection

Section "Screen"
    Identifier  "Screen 1"
    Device      "* Generic VESA compatible"
    Monitor     "My Monitor"
    DefaultDepth 24

#    Subsection "Display"
 #       Depth       8
  #      Modes       "1280x800"
   #     ViewPort    1280 800
    #EndSubsection
#    Subsection "Display"
#        Depth       16
#        Modes       "1024x768"
#        ViewPort    1024 768
#    EndSubsection
    Subsection "Display"
	Viewport	0 0
        Depth       24
	Modes	"1280x800"
    EndSubsection
EndSection

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection

# Section "DRI"
#    Mode 0666
# EndSection