Advertisement
MauroEldritch

Error Config

Mar 28th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.78 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier  "X.org Configured"
  3.     Screen  0   "Screen0" 0 0
  4.     InputDevice "Mouse0" "CorePointer"
  5.     InputDevice "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9.     ModulePath  "/usr/local/lib/xorg/modules"
  10.     FontPath    "/usr/local/lib/X11/fonts/misc/"
  11.     FontPath    "/usr/local/lib/X11/fonts/TTF/"
  12.     FontPath    "/usr/local/lib/X11/fonts/OTF/"
  13.     FontPath    "/usr/local/lib/X11/fonts/Type1/"
  14.     FontPath    "/usr/local/lib/X11/fonts/100dpi/"
  15.     FontPath    "/usr/local/lib/X11/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19.     Load "extmod"
  20.     Load "record"
  21.     Load "dbe"
  22.     Load "dri"
  23.     Load "dri2"
  24.     Load "glx"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28.     Identifier "Mouse0"
  29.     Driver  "mouse"
  30.     Option  "Protocol" "auto"
  31.     Option  "Device" "/dev/sysmouse"
  32.     Option  "ZAxisMapping" "4 5 6 7"
  33. EndSection
  34.  
  35. Section "Monitor"
  36.     Identifier "Monitor0"
  37.     VendorName "Monitor Vendor"
  38.     ModelName "Monitor Model"
  39.     HorizSync 60
  40.     VertRefresh 60
  41. #Here goes Modeline, taken it out, wblock!
  42. EndSection
  43.  
  44. Section "Device"
  45.     Identifier "Card0"
  46.     Driver  "vesa"
  47.     VendorName "Advanced Micro Devices [AMD] nee ATI"
  48.     BoardName "RV280 [Radeon 9200]"
  49.     BusID   "PCI:0:16:0"
  50. EndSection
  51.  
  52. Section "Screen"
  53.     Identifier "Screen0"
  54.     Device "Card0"
  55.     Monitor "Monitor0"
  56.     DefaultDepth 1
  57.     SubSection "Display"
  58.         Viewport 0 0
  59.         Depth 1
  60.         Modes "640x480_60.00"
  61.     EndSubSection
  62.     SubSection "Display"
  63.         Viewport 0 0
  64.         Depth 4
  65.         Modes "640x480_60.00"
  66.     EndSubSection
  67.     SubSection "Display"
  68.         Viewport 0 0
  69.         Depth 8
  70.         Modes "640x480_60.00"
  71.     EndSubSection
  72.     SubSection "Display"
  73.         Viewport 0 0
  74.         Depth 15
  75.         Modes "640x480_60.00"
  76.     EndSubSection
  77.     SubSection "Display"
  78.         Viewport 0 0
  79.         Depth 16
  80.         Modes "640x480_60.00"
  81.     EndSubSection
  82.     SubSection "Display"
  83.         Viewport 0 0
  84.         Depth 24
  85.         Modes "640x480_60.00"
  86.     EndSubSection
  87. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement