Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Jul 4th, 2009 | Syntax: None | Size: 1.96 KB | Hits: 90 | Expires: Never
Copy text to clipboard
  1. Section "Device"
  2.         Identifier  "Card0"
  3.         Driver      "radeonhd"
  4.         Option "MergedFB" "true"
  5.         BusID "PCI:3:0:0"
  6. EndSection
  7.  
  8. Section "Device"
  9.         Identifier  "Card2"
  10.         Driver      "radeonhd"
  11.         Option "MergedFB" "true"
  12.         BusID "PCI:4:0:0"
  13. EndSection
  14.  
  15. Section "Monitor"
  16.         Identifier   "Monitor0"
  17.         HorizSync    31.5 - 137.0
  18.         VertRefresh  40.0 - 150.0
  19. EndSection
  20.  
  21. Section "Monitor"
  22.         Identifier   "Monitor1"
  23.         HorizSync    31.5 - 137.0
  24.         VertRefresh  40.0 - 150.0
  25. EndSection
  26.  
  27. Section "Monitor"
  28.         Identifier   "Monitor2"
  29.         HorizSync    31.5 - 137.0
  30.         VertRefresh  40.0 - 150.0
  31. EndSection
  32.  
  33. Section "Screen"
  34.         Identifier "Screen0"
  35.         Monitor    "Monitor0"
  36.         Device     "Card0"
  37.         DefaultDepth     24
  38.         SubSection "Display"
  39.                 Virtual 5760 1200
  40.                 Modes    "1920x1200"
  41.         EndSubSection
  42. EndSection
  43.  
  44. Section "Screen"
  45.         Identifier "Screen1"
  46.         Monitor    "Monitor1"
  47.         Device     "Card0"
  48.         DefaultDepth     24
  49.         SubSection "Display"
  50.                 Virtual 5760 1200
  51.                 Modes    "1920x1200"
  52.         EndSubSection
  53. EndSection
  54.  
  55. Section "Screen"
  56.         Identifier "Screen2"
  57.         Monitor    "Monitor2"
  58.         Device     "Card2"
  59.         DefaultDepth     24
  60.         SubSection "Display"
  61.                 Virtual 5760 1200
  62.                 Modes    "1920x1200"
  63.         EndSubSection
  64. EndSection
  65.  
  66. Section "ServerLayout"
  67.         Identifier     "Layout0"
  68.         Screen      0  "Screen0" 0 0
  69.         Screen      1  "Screen1" RightOf "Screen0"
  70.         Screen      2  "Screen2" RightOf "Screen1"
  71.         InputDevice    "Keyboard0" "CoreKeyboard"
  72.         InputDevice    "Mouse0" "CorePointer"
  73. EndSection
  74.  
  75. Section "Module"
  76.         Load  "dbe"
  77.         Load  "extmod"
  78.         Load  "glx"
  79.         Load  "dri"
  80. EndSection
  81.  
  82. Section "InputDevice"
  83.         Identifier  "Mouse0"
  84.         Driver      "mouse"
  85.         Option      "Protocol" "Auto"
  86.         Option      "Device" "/dev/input/mice"
  87. EndSection
  88.  
  89. Section "InputDevice"
  90.         Identifier  "Keyboard0"
  91.         Driver      "kbd"
  92.         Option      "XkbModel" "pc105"
  93.         Option      "XkbLayout" "ru"
  94. EndSection
  95.  
  96. Section "ServerFlags"
  97.     Option "Xinerama" "1"
  98. EndSection