Advertisement
Guest User

xorg

a guest
Oct 10th, 2011
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.29 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier     "Default Layout"
  3.     Screen      0  "Screen0" 0 0
  4. EndSection
  5.  
  6. Section "Files"
  7.     ModulePath   "/usr/lib64/xorg/modules"
  8.     ModulePath   "/usr/lib64/opengl/nvidia"
  9.     ModulePath   "usr/lib64/opengl/xorg-x11/extensions"
  10.     FontPath     "/usr/share/fonts/misc/"
  11.     FontPath     "/usr/share/fonts/TTF/"
  12.     FontPath     "/usr/share/fonts/OTF/"
  13.     FontPath     "/usr/share/fonts/Type1/"
  14.     FontPath     "/usr/share/fonts/100dpi/"
  15.     FontPath     "/usr/share/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19.     Load  "glx"
  20.     Load  "dbe"
  21.     Load  "record"
  22.     Load  "extmod"
  23.     Load  "dri"
  24.     Load  "dri2"
  25. EndSection
  26.  
  27. Section "ServerFlags"
  28.     Option  "AIGLX" "True"
  29. EndSection
  30.  
  31. Section "Device"
  32.     Option      "AccelMethod" "UXA"
  33.     Option      "Tiling" "False"
  34.     Option      "DRI"   "true"
  35.     Option      "DRI2"  "true"
  36.     Identifier  "Card0"
  37.     Driver      "intel"
  38.     VendorName  "Intel Corporation"
  39.     BusID       "PCI:0:2:0"
  40. EndSection
  41.  
  42. Section "Screen"
  43.     Identifier "Screen0"
  44.     Device     "Card0"
  45.     Monitor    "Monitor0"
  46.     DefaultDepth  24
  47.     SubSection "Display"
  48.         Viewport   0 0
  49.         Depth     24
  50.             Modes    "1368x768"
  51.     EndSubSection
  52. EndSection
  53.  
  54. Section "Extensions"
  55.     Option     "Composite"  "Enable"
  56.     Option     "RENDER"     "Enable"
  57. EndSection
  58.  
  59. Section "DRI"
  60.     Mode   0666
  61. EndSection
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement