Advertisement
Guest User

xorg.conf - 3 displays

a guest
Dec 4th, 2011
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.     Identifier     "Layout0"
  3.     Screen      0  "Screen0" 0 0
  4.     Screen      1   "Screen1" LeftOf "Screen0"
  5.     Screen      2   "Screen2" RightOf "Screen0"
  6.     Option      "Xinerama" "1"
  7. EndSection
  8.  
  9. Section "Files"
  10.     ModulePath   "/usr/lib/xorg/modules"
  11.     FontPath     "/usr/share/fonts/corefonts"
  12.     FontPath     "/usr/share/fonts/ttf-bitstream-vera"
  13.     FontPath     "/usr/share/fonts/misc/"
  14.     FontPath     "/usr/share/fonts/TTF/"
  15.     FontPath     "/usr/share/fonts/OTF"
  16.     FontPath     "/usr/share/fonts/Type1/"
  17.     FontPath     "/usr/share/fonts/100dpi/"
  18.     FontPath     "/usr/share/fonts/75dpi/"
  19.     FontPath     "/usr/share/fonts/terminus"
  20.     FontPath     "/usr/share/fonts/lfpfonts-fix"
  21.     FontPath     "/usr/share/fonts/urw-fonts"
  22.     FontPath     "/usr/share/fonts/unifont"
  23.     FontPath     "/usr/share/fonts/dejavu"
  24.     FontPath     "/usr/share/fonts/sharefonts"
  25.     FontPath     "/usr/share/fonts/freefonts"
  26. EndSection
  27.  
  28. Section "Module"
  29.     Load  "extmod"
  30.     Load  "glx"
  31.     Load  "GLcore"
  32.     Load  "record"
  33. EndSection
  34.  
  35. Section "Monitor"
  36.     Identifier   "Monitor0"
  37.     VendorName   "Samsung"
  38.     ModelName    "SA850"
  39.     HorizSync       30.0 - 90.0
  40.     VertRefresh     56.0 - 75.0
  41.     Option         "DPMS"
  42. EndSection
  43.  
  44. Section "Monitor"
  45.     Identifier   "Monitor1"
  46.     VendorName   "Samsung"
  47.     ModelName    "245BW"
  48.     HorizSync       30.0 - 81.0
  49.     VertRefresh     56.0 - 75.0
  50.     Option         "DPMS"
  51. EndSection
  52.  
  53. Section "Monitor"
  54.     Identifier   "Monitor2"
  55.     VendorName   "Samsung"
  56.     ModelName    "245BW"
  57.     HorizSync       30.0 - 81.0
  58.     VertRefresh     56.0 - 75.0
  59.     Option         "DPMS"
  60. EndSection
  61.  
  62. Section "Device"
  63.     Identifier  "Card0"
  64.     Driver      "nvidia"
  65.     VendorName  "nVidia Corporation"
  66.     BoardName   "Unknown Board"
  67.     BusID       "PCI:3:0:0"
  68.     Option      "NoLogo" "true"
  69.     Option      "RenderAccel" "true"
  70. EndSection
  71.  
  72. Section "Device"
  73.     Identifier  "Card1"
  74.     Driver      "nvidia"
  75.     VendorName  "nVidia Corporation"
  76.     BoardName   "Unknown Board"
  77.     BusID       "PCI:4:0:0"
  78.     Option      "NoLogo" "true"
  79.     Option      "RenderAccel" "true"
  80.     Screen      0
  81. EndSection
  82.  
  83. Section "Device"
  84.     Identifier  "Card2"
  85.     Driver      "nvidia"
  86.     VendorName  "nVidia Corporation"
  87.     BoardName   "Unknown Board"
  88.     BusID       "PCI:4:0:0"
  89.     Option      "NoLogo" "true"
  90.     Option      "RenderAccel" "true"
  91.     Screen      1
  92. EndSection
  93.  
  94. Section "Screen"
  95.     Identifier "Screen0"
  96.     Device     "Card0"
  97.     Monitor    "Monitor0"
  98.     DefaultDepth    24
  99.     Option         "metamodes" "nvidia-auto-select +0+0"
  100.     SubSection "Display"
  101.         Modes     "2560x1440"
  102.         Depth     24
  103.     EndSubSection
  104. EndSection
  105.  
  106. Section "Screen"
  107.     Identifier     "Screen1"
  108.     Device         "Card1"
  109.     Monitor        "Monitor1"
  110.     DefaultDepth    24
  111.     Option         "TwinView" "0"
  112.     Option         "TwinViewXineramaInfoOrder" "DFP-0"
  113.     Option         "metamodes" "DFP-0: nvidia-auto-select +0+0"
  114.     Option         "RandRotation" "On"
  115.     Option         "Rotate" "CW"
  116.     SubSection     "Display"
  117.         Depth       24
  118.     EndSubSection
  119. EndSection
  120.  
  121. Section "Screen"
  122.     Identifier     "Screen2"
  123.     Device         "Card2"
  124.     Monitor        "Monitor2"
  125.     DefaultDepth    24
  126.     Option         "TwinView" "0"
  127.     Option         "metamodes" "DFP-2: nvidia-auto-select +0+0"
  128.     Option         "RandRotation" "On"
  129.     Option         "Rotate" "CCW"
  130.     SubSection     "Display"
  131.         Depth       24
  132.     EndSubSection
  133. EndSection
  134.  
  135.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement