Advertisement
daemotron

Xorg Configuration

Mar 6th, 2011
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen      0  "Screen0" 0 0
  4.     InputDevice    "Mouse0" "CorePointer"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6.     Option         "DontZap" "Off"
  7. EndSection
  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. Section "Module"
  18.     Load  "dri2"
  19.     Load  "record"
  20.     Load  "dbe"
  21.     Load  "extmod"
  22.     Load  "glx"
  23. EndSection
  24. Section "InputDevice"
  25.     Identifier  "Keyboard0"
  26.     Driver      "kbd"
  27. EndSection
  28. Section "InputDevice"
  29.     Identifier  "Mouse0"
  30.     Driver      "mouse"
  31.     Option      "Protocol" "auto"
  32.     Option      "Device" "/dev/sysmouse"
  33.     Option      "ZAxisMapping" "4 5 6 7"
  34. EndSection
  35. Section "Monitor"
  36.     Identifier   "Monitor0"
  37.     VendorName   "Monitor Vendor"
  38.     ModelName    "Monitor Model"
  39. EndSection
  40. Section "Device"
  41.     Identifier  "Card0"
  42.     Driver      "nvidia"
  43.     VendorName  "nVidia Corporation"
  44.     BoardName   "GF100 [GeForce GTX 480]"
  45.     BusID       "PCI:2:0:0"
  46. EndSection
  47. Section "Screen"
  48.     Identifier "Screen0"
  49.     Device     "Card0"
  50.     Monitor    "Monitor0"
  51.     SubSection "Display"
  52.         Viewport   0 0
  53.         Depth     1
  54.     EndSubSection
  55.     SubSection "Display"
  56.         Viewport   0 0
  57.         Depth     4
  58.     EndSubSection
  59.     SubSection "Display"
  60.         Viewport   0 0
  61.         Depth     8
  62.     EndSubSection
  63.     SubSection "Display"
  64.         Viewport   0 0
  65.         Depth     15
  66.     EndSubSection
  67.     SubSection "Display"
  68.         Viewport   0 0
  69.         Depth     16
  70.     EndSubSection
  71.     SubSection "Display"
  72.         Viewport   0 0
  73.         Depth     24
  74.     EndSubSection
  75. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement