Guest User

Untitled

a guest
Sep 4th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Out Monitor sections
  2. #
  3. Section "Monitor"
  4.     Identifier   "Monitor0"
  5.     VendorName   "ati"
  6.     ModelName    "radeon"
  7. EndSection
  8.  
  9. Section "Monitor"
  10.     Identifier   "Monitor1"
  11.     VendorName   "ati"
  12.     ModelName    "radeon"
  13. EndSection
  14.  
  15.  
  16. # Our Device sections
  17. #
  18. Section "Device"
  19.     Identifier  "Card0"
  20.     Driver      "ati"
  21.     Option  "ZaphodHeads"   "DVI-0"
  22.     Option  "DynamicPM" "on"
  23.     Option  "ClockGating"   "on"
  24.  
  25.     Option  "AGPMode"               "8"   #not used when KMS is on
  26.     Option  "AGPFastWrite"          "off" #could cause instabilities enable it at your own risk
  27.     Option  "SWcursor"              "off" #software cursor might be necessary on some rare occasions, hence set off by default
  28.     Option  "EnablePageFlip"        "off"  #supported on all R/RV/RS4xx and older hardware and set off by default
  29.     Option  "AccelMethod"           "EXA" #valid options are XAA and EXA. EXA is the newest acceleration method and it is the default.
  30.     Option  "RenderAccel"           "on"  #enabled by default on all radeon hardware
  31.     Option  "ColorTiling"           "on"  #enabled by default on RV300 and later radeon cards.
  32.     Option  "EXAVSync"              "off" #default is off, otherwise on
  33.     Option  "EXAPixmaps"            "off"  #when on icreases 2D performance, but may also cause artifacts on some old cards
  34.     Option  "AccelDFS"              "off"  #default is off, read the radeon manpage for more information
  35.  
  36.     VendorName  "ATI"
  37.     BusID   "PCI:1:0:0"
  38.     BoardName   "XT [ATI Radeon HD 6800 Series]"
  39.     Screen      0
  40. EndSection
  41.  
  42. Section "Device"
  43.     Identifier  "Card1"
  44.     Driver      "ati"
  45.     Option  "ZaphodHeads"   "DVI-1"
  46.  
  47.     Option  "AGPMode"               "8"   #not used when KMS is on
  48.     Option  "AGPFastWrite"          "off" #could cause instabilities enable it at your own risk
  49.     Option  "SWcursor"              "off" #software cursor might be necessary on some rare occasions, hence set off by default
  50.     Option  "EnablePageFlip"        "off"  #supported on all R/RV/RS4xx and older hardware and set off by default
  51.     Option  "AccelMethod"           "EXA" #valid options are XAA and EXA. EXA is the newest acceleration method and it is the default.
  52.     Option  "RenderAccel"           "on"  #enabled by default on all radeon hardware
  53.     Option  "ColorTiling"           "on"  #enabled by default on RV300 and later radeon cards.
  54.     Option  "EXAVSync"              "off" #default is off, otherwise on
  55.     Option  "EXAPixmaps"            "off"  #when on icreases 2D performance, but may also cause artifacts on some old cards
  56.     Option  "AccelDFS"              "off"  #default is off, read the radeon manpage for more information
  57.  
  58.     VendorName  "ATI"
  59.     BusID   "PCI:1:0:0"
  60.     BoardName   "XT [ATI Radeon HD 6800 Series]"
  61.     Screen      1
  62. EndSection
  63.  
  64.  
  65. # Our Screen sections
  66. #
  67. Section "Screen"
  68.     Identifier    "Screen0"
  69.     Device        "Card0"
  70.     Monitor       "Monitor0"
  71.     DefaultDepth  24
  72.     SubSection    "Display"
  73.         Viewport  0 0
  74.         Depth     24
  75.         Modes     "1920x1080"
  76.     EndSubSection
  77. EndSection
  78.  
  79. Section "Screen"
  80.     Identifier    "Screen1"
  81.     Device        "Card1"
  82.     Monitor       "Monitor1"
  83.     DefaultDepth  24
  84.     SubSection    "Display"
  85.         Viewport  0 0
  86.         Depth     24
  87.         Modes     "1600x900"
  88.     EndSubSection
  89. EndSection
  90.  
  91.  
  92. # Finally our ServerLayout that does the work
  93. #
  94. Section "ServerLayout"
  95.     Identifier     "Xinerama Screen"
  96.     Screen         0  "Screen0" 0 0
  97.     Screen         1  "Screen1" Relative "Screen0" 1920 110
  98. #    InputDevice    "mouse0"    "CorePointer"
  99. #    InputDevice   "event0" "CoreKeyboard"
  100.     Option         "Xinerama"   "true"
  101. #    Option         "TwinView"   "true"
  102. EndSection
Add Comment
Please, Sign In to add comment