spacepaste

  1.  
  2. $ cat /etc/X11/xorg.conf
  3. Section "ServerLayout"
  4. Identifier "X.org Configured"
  5. Screen 0 "Screen0" 0 0
  6. Screen 1 "Screen1" RightOf "Screen0"
  7. InputDevice "Mouse0" "CorePointer"
  8. InputDevice "Keyboard0" "CoreKeyboard"
  9. EndSection
  10. Section "InputDevice"
  11. Identifier "Keyboard0"
  12. Driver "kbd"
  13. EndSection
  14. Section "InputDevice"
  15. Identifier "Mouse0"
  16. Driver "mouse"
  17. Option "Protocol" "auto"
  18. Option "Device" "/dev/input/mice"
  19. Option "ZAxisMapping" "4 5 6 7"
  20. EndSection
  21. Section "Monitor"
  22. Identifier "Monitor0"
  23. VendorName "Monitor Vendor"
  24. ModelName "Monitor Model"
  25. EndSection
  26. Section "Monitor"
  27. Identifier "Monitor1"
  28. VendorName "Monitor Vendor"
  29. ModelName "Monitor Model"
  30. EndSection
  31. Section "Monitor"
  32. Identifier "Monitor2"
  33. VendorName "Monitor Vendor"
  34. ModelName "Monitor Model"
  35. EndSection
  36. Section "Monitor"
  37. Identifier "Monitor3"
  38. VendorName "Monitor Vendor"
  39. ModelName "Monitor Model"
  40. EndSection
  41. Section "Device"
  42. ### Available Driver options are:-
  43. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  44. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  45. ### <percent>: "<f>%"
  46. ### [arg]: arg optional
  47. #Option "SWcursor" # [<bool>]
  48. #Option "kmsdev" # <str>
  49. #Option "ShadowFB" # [<bool>]
  50. #Option "AccelMethod" # <str>
  51. #Option "PageFlip" # [<bool>]
  52. #Option "ZaphodHeads" # <str>
  53. #Option "DoubleShadow" # [<bool>]
  54. Identifier "Card0"
  55. Driver "modesetting"
  56. BusID "PCI:0:2:0"
  57. EndSection
  58. Section "Device"
  59. Identifier "Card1"
  60. Driver "nvidia"
  61. BusID "PCI:1:0:0"
  62. Option "Coolbits" "31"
  63. EndSection
  64. Section "Screen"
  65. Identifier "Screen0"
  66. Device "Card0"
  67. Monitor "Monitor0"
  68. Option "AllowEmptyInitialConfiguration" "True"
  69. SubSection "Display"
  70. Viewport 0 0
  71. Depth 1
  72. EndSubSection
  73. SubSection "Display"
  74. Viewport 0 0
  75. Depth 4
  76. EndSubSection
  77. SubSection "Display"
  78. Viewport 0 0
  79. Depth 8
  80. EndSubSection
  81. SubSection "Display"
  82. Viewport 0 0
  83. Depth 15
  84. EndSubSection
  85. SubSection "Display"
  86. Viewport 0 0
  87. Depth 16
  88. EndSubSection
  89. SubSection "Display"
  90. Viewport 0 0
  91. Depth 24
  92. EndSubSection
  93. EndSection
  94. Section "Screen"
  95. Identifier "Screen1"
  96. Device "Card1"
  97. Monitor "Monitor1"
  98. Option "AllowEmptyInitialConfiguration" "True"
  99. SubSection "Display"
  100. Viewport 0 0
  101. Depth 1
  102. EndSubSection
  103. SubSection "Display"
  104. Viewport 0 0
  105. Depth 4
  106. EndSubSection
  107. SubSection "Display"
  108. Viewport 0 0
  109. Depth 8
  110. EndSubSection
  111. SubSection "Display"
  112. Viewport 0 0
  113. Depth 15
  114. EndSubSection
  115. SubSection "Display"
  116. Viewport 0 0
  117. Depth 16
  118. EndSubSection
  119. SubSection "Display"
  120. Viewport 0 0
  121. Depth 24
  122. EndSubSection
  123. EndSection
  124.