Advertisement
Guest User

nova xorg

a guest
Oct 31st, 2011
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.00 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/lib/xorg/modules"
  10.     FontPath     "/usr/share/fonts/X11/misc"
  11.     FontPath     "/usr/share/fonts/X11/cyrillic"
  12.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  13.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  14.     FontPath     "/usr/share/fonts/X11/Type1"
  15.     FontPath     "/usr/share/fonts/X11/100dpi"
  16.     FontPath     "/usr/share/fonts/X11/75dpi"
  17.     FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  18.     FontPath     "built-ins"
  19. EndSection
  20.  
  21. Section "Module"
  22.     Load  "dri"
  23.     Load  "glx"
  24.     Load  "extmod"
  25.     Load  "record"
  26.     Load  "dri2"
  27.     Load  "dbe"
  28. EndSection
  29.  
  30. Section "InputDevice"
  31.     Identifier  "Keyboard0"
  32.     Driver      "kbd"
  33. EndSection
  34.  
  35. Section "InputDevice"
  36.     Identifier  "Mouse0"
  37.     Driver      "mouse"
  38.     Option      "Protocol" "auto"
  39.     Option      "Device" "/dev/input/mice"
  40.     Option      "ZAxisMapping" "4 5 6 7"
  41. EndSection
  42.  
  43. Section "Monitor"
  44.     Identifier   "Monitor0"
  45.     VendorName   "Monitor Vendor"
  46.     ModelName    "Monitor Model"
  47. EndSection
  48.  
  49. Section "Device"
  50.         ### Available Driver options are:-
  51.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  52.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  53.         ### <percent>: "<f>%"
  54.         ### [arg]: arg optional
  55.         #Option     "NoAccel"               # [<bool>]
  56.         #Option     "SWcursor"              # [<bool>]
  57.         #Option     "ColorKey"              # <i>
  58.         #Option     "CacheLines"            # <i>
  59.         #Option     "Dac6Bit"               # [<bool>]
  60.         #Option     "DRI"                   # [<bool>]
  61.         #Option     "NoDDC"                 # [<bool>]
  62.         #Option     "ShowCache"             # [<bool>]
  63.         #Option     "XvMCSurfaces"          # <i>
  64.         #Option     "PageFlip"              # [<bool>]
  65.     Identifier  "Card0"
  66.     Driver      "intel"
  67.     BusID       "PCI:0:2:0"
  68. EndSection
  69.  
  70. Section "Screen"
  71.     Identifier "Screen0"
  72.     Device     "Card0"
  73.     Monitor    "Monitor0"
  74.     DefaultDepth   24
  75.     SubSection "Display"
  76.         modes "1280x800_60" "1024x768_60" "800x600_60" "640x480_60" "320x240_60"
  77.         Viewport   0 0
  78.         Depth     1
  79.     EndSubSection
  80.     SubSection "Display"
  81.         modes "1280x800_60" "1024x768_60" "800x600_60" "640x480_60" "320x240_60"
  82.         Viewport   0 0
  83.         Depth     4
  84.     EndSubSection
  85.     SubSection "Display"
  86.         modes "1280x800_60" "1024x768_60" "800x600_60" "640x480_60" "320x240_60"
  87.         Viewport   0 0
  88.         Depth     8
  89.     EndSubSection
  90.     SubSection "Display"
  91.         modes "1280x800_60" "1024x768_60" "800x600_60" "640x480_60" "320x240_60"
  92.         Viewport   0 0
  93.         Depth     15
  94.     EndSubSection
  95.     SubSection "Display"
  96.         modes "1280x800_60" "1024x768_60" "800x600_60" "640x480_60" "320x240_60"
  97.         Viewport   0 0
  98.         Depth     16
  99.     EndSubSection
  100.     SubSection "Display"
  101.         modes "1280x800_60" "1024x768_60" "800x600_60" "640x480_60" "320x240_60"
  102.         Viewport   0 0
  103.         Depth     24
  104.     EndSubSection
  105. EndSection
  106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement