Advertisement
Guest User

Untitled

a guest
Sep 11th, 2014
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.26 KB | None | 0 0
  1. Section "ServerLayout"
  2.         Identifier     "X.org Configured"
  3.         Screen      0  "Screen0" 0 0
  4.         Screen      1  "Screen1" RightOf "Screen0"
  5.         InputDevice    "Mouse0" "CorePointer"
  6.         InputDevice    "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Files"
  10.         ModulePath   "/usr/lib/xorg/modules"
  11.         FontPath     "/usr/share/fonts/X11/misc"
  12.         FontPath     "/usr/share/fonts/X11/cyrillic"
  13.         FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  14.         FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  15.         FontPath     "/usr/share/fonts/X11/Type1"
  16.         FontPath     "/usr/share/fonts/X11/100dpi"
  17.         FontPath     "/usr/share/fonts/X11/75dpi"
  18.         FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  19.         FontPath     "built-ins"
  20. EndSection
  21.  
  22. Section "Module"
  23.         Load  "dri"
  24.         Load  "dri2"
  25.         Load  "extmod"
  26.         Load  "record"
  27.         Load  "glx"
  28.         Load  "dbe"
  29. EndSection
  30.  
  31. Section "InputDevice"
  32.         Identifier  "Keyboard0"
  33.         Driver      "kbd"
  34. EndSection
  35.  
  36. Section "InputDevice"
  37.         Identifier  "Mouse0"
  38.         Driver      "mouse"
  39.         Option      "Protocol" "auto"
  40.         Option      "Device" "/dev/input/mice"
  41.         Option      "ZAxisMapping" "4 5 6 7"
  42. EndSection
  43.  
  44. Section "Monitor"
  45.         Identifier   "Monitor0"
  46.         VendorName   "Monitor Vendor"
  47.         ModelName    "Monitor Model"
  48. EndSection
  49.  
  50. Section "Monitor"
  51.         Identifier   "Monitor1"
  52.         VendorName   "Monitor Vendor"
  53.         ModelName    "Monitor Model"
  54. EndSection
  55.  
  56. Section "Device"
  57.         Identifier  "Card0"
  58.         Driver      "nvidia"
  59.         BusID       "PCI:1:0:0"
  60. EndSection
  61.  
  62. Section "Device"
  63.         ### Available Driver options are:-
  64.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  65.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  66.         ### <percent>: "<f>%"
  67.         ### [arg]: arg optional
  68.         #Option     "SWcursor"                  # [<bool>]
  69.         #Option     "HWcursor"                  # [<bool>]
  70.         #Option     "NoAccel"                   # [<bool>]
  71.         #Option     "ShadowFB"                  # [<bool>]
  72.         #Option     "VideoKey"                  # <i>
  73.         #Option     "WrappedFB"                 # [<bool>]
  74.         #Option     "GLXVBlank"                 # [<bool>]
  75.         #Option     "ZaphodHeads"               # <str>
  76.         #Option     "PageFlip"                  # [<bool>]
  77.         #Option     "SwapLimit"                 # <i>
  78.         #Option     "AsyncUTSDFS"               # [<bool>]
  79.         Identifier  "Card1"
  80.         Driver      "nouveau"
  81.         BusID       "PCI:1:0:0"
  82. EndSection
  83.  
  84. Section "Screen"
  85.         Identifier "Screen0"
  86.         Device     "Card0"
  87.         Monitor    "Monitor0"
  88.         SubSection "Display"
  89.                 Viewport   0 0
  90.                 Depth     1
  91.         EndSubSection
  92.         SubSection "Display"
  93.                 Viewport   0 0
  94.                 Depth     4
  95.         EndSubSection
  96.         SubSection "Display"
  97.                 Viewport   0 0
  98.                 Depth     8
  99.         EndSubSection
  100.         SubSection "Display"
  101.                 Viewport   0 0
  102.                 Depth     15
  103.         EndSubSection
  104.         SubSection "Display"
  105.                 Viewport   0 0
  106.                 Depth     16
  107.         EndSubSection
  108.         SubSection "Display"
  109.                 Viewport   0 0
  110.                 Depth     24
  111.         EndSubSection
  112. EndSection
  113.  
  114. Section "Screen"
  115.         Identifier "Screen1"
  116.         Device     "Card1"
  117.         Monitor    "Monitor1"
  118.         SubSection "Display"
  119.                 Viewport   0 0
  120.                 Depth     1
  121.         EndSubSection
  122.         SubSection "Display"
  123.                 Viewport   0 0
  124.                 Depth     4
  125.         EndSubSection
  126.         SubSection "Display"
  127.                 Viewport   0 0
  128.                 Depth     8
  129.         EndSubSection
  130.         SubSection "Display"
  131.                 Viewport   0 0
  132.                 Depth     15
  133.         EndSubSection
  134.         SubSection "Display"
  135.                 Viewport   0 0
  136.                 Depth     16
  137.         EndSubSection
  138.         SubSection "Display"
  139.                 Viewport   0 0
  140.                 Depth     24
  141.         EndSubSection
  142. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement