Advertisement
Guest User

Xorg 2 vga 3 monitor

a guest
Nov 14th, 2015
164
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. #   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     "built-ins"
  19. EndSection
  20.  
  21. Section "Module"
  22.     Load  "glx"
  23. EndSection
  24.  
  25. Section "InputDevice"
  26.     Identifier  "Keyboard0"
  27.     Driver      "kbd"
  28. EndSection
  29.  
  30. Section "InputDevice"
  31.     Identifier  "Mouse0"
  32.     Driver      "mouse"
  33.     Option      "Protocol" "auto"
  34.     Option      "Device" "/dev/input/mice"
  35.     Option      "ZAxisMapping" "4 5 6 7"
  36. EndSection
  37.  
  38. Section "Monitor"
  39.     Identifier   "Monitor0"
  40.     VendorName   "Monitor Vendor"
  41.     ModelName    "Monitor Model"
  42. EndSection
  43.  
  44. Section "Monitor"
  45.     Identifier   "Monitor1"
  46.     VendorName   "Monitor Vendor"
  47.     ModelName    "Monitor Model"
  48. EndSection
  49.  
  50. Section "Device"
  51.         ### Available Driver options are:-
  52.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  53.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  54.         ### <percent>: "<f>%"
  55.         ### [arg]: arg optional
  56.         #Option     "SWcursor"              # [<bool>]
  57.         #Option     "HWcursor"              # [<bool>]
  58.         #Option     "NoAccel"               # [<bool>]
  59.         #Option     "ShadowFB"              # [<bool>]
  60.         #Option     "VideoKey"              # <i>
  61.         #Option     "WrappedFB"             # [<bool>]
  62.         #Option     "GLXVBlank"             # [<bool>]
  63.         #Option     "ZaphodHeads"           # <str>
  64.         #Option     "PageFlip"              # [<bool>]
  65.         #Option     "SwapLimit"             # <i>
  66.         #Option     "AsyncUTSDFS"           # [<bool>]
  67.         #Option     "AccelMethod"           # <str>
  68.     Identifier  "Card0"
  69.     Driver      "nvidia"
  70.     BusID       "PCI:1:0:0"
  71. EndSection
  72.  
  73. Section "Device"
  74.         ### Available Driver options are:-
  75.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  76.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  77.         ### <percent>: "<f>%"
  78.         ### [arg]: arg optional
  79.         #Option     "SWcursor"              # [<bool>]
  80.         #Option     "HWcursor"              # [<bool>]
  81.         #Option     "NoAccel"               # [<bool>]
  82.         #Option     "ShadowFB"              # [<bool>]
  83.         #Option     "VideoKey"              # <i>
  84.         #Option     "WrappedFB"             # [<bool>]
  85.         #Option     "GLXVBlank"             # [<bool>]
  86.         #Option     "ZaphodHeads"           # <str>
  87.         #Option     "PageFlip"              # [<bool>]
  88.         #Option     "SwapLimit"             # <i>
  89.         #Option     "AsyncUTSDFS"           # [<bool>]
  90.         #Option     "AccelMethod"           # <str>
  91.     Identifier  "Card1"
  92.     Driver      "nvidia"
  93.     BusID       "PCI:7:0:0"
  94. EndSection
  95.  
  96. Section "Screen"
  97.     Identifier "Screen0"
  98.     Device     "Card0"
  99.     Monitor    "Monitor0"
  100.     SubSection "Display"
  101.         Viewport   0 0
  102.         Depth     1
  103.     EndSubSection
  104.     SubSection "Display"
  105.         Viewport   0 0
  106.         Depth     4
  107.     EndSubSection
  108.     SubSection "Display"
  109.         Viewport   0 0
  110.         Depth     8
  111.     EndSubSection
  112.     SubSection "Display"
  113.         Viewport   0 0
  114.         Depth     15
  115.     EndSubSection
  116.     SubSection "Display"
  117.         Viewport   0 0
  118.         Depth     16
  119.     EndSubSection
  120.     SubSection "Display"
  121.         Viewport   0 0
  122.         Depth     24
  123.     EndSubSection
  124. EndSection
  125.  
  126. Section "Screen"
  127.     Identifier "Screen1"
  128.     Device     "Card1"
  129.     Monitor    "Monitor1"
  130.     SubSection "Display"
  131.         Viewport   0 0
  132.         Depth     1
  133.     EndSubSection
  134.     SubSection "Display"
  135.         Viewport   0 0
  136.         Depth     4
  137.     EndSubSection
  138.     SubSection "Display"
  139.         Viewport   0 0
  140.         Depth     8
  141.     EndSubSection
  142.     SubSection "Display"
  143.         Viewport   0 0
  144.         Depth     15
  145.     EndSubSection
  146.     SubSection "Display"
  147.         Viewport   0 0
  148.         Depth     16
  149.     EndSubSection
  150.     SubSection "Display"
  151.         Viewport   0 0
  152.         Depth     24
  153.     EndSubSection
  154. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement