Advertisement
Guest User

Untitled

a guest
Oct 20th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. bash-4.3$ cat /etc/X11/xorg.conf.d/20-video.conf
  2. Section "ServerLayout"
  3. Identifier "X.org Configured"
  4. Screen 0 "Screen0" 0 0
  5. Screen 1 "Screen1" RightOf "Screen0"
  6. Screen 2 "Screen2" RightOf "Screen0"
  7. EndSection
  8.  
  9. Section "Monitor"
  10. Identifier "Main"
  11. VendorName "Samsung"
  12. ModelName "TFT_Display"
  13. HorizSync 30.0 - 75.0
  14. VertRefresh 50.0 - 90.0
  15. Option "DPMS"
  16. Option "Primary"
  17. Option "PreferredMode" "1600x900"
  18. Option "Position" "0 0"
  19. EndSection
  20.  
  21.  
  22. Section "Monitor"
  23. Identifier "VGA1"
  24. VendorName "Unplugged"
  25. ModelName "Nothing Plugged In"
  26. HorizSync 30.0 - 75.0
  27. VertRefresh 50.0 - 90.0
  28. Option "DPMS"
  29. EndSection
  30.  
  31. Section "Monitor"
  32. Identifier "HDMI1"
  33. VendorName "Who_Knows"
  34. ModelName "Benq Projector"
  35. HorizSync 30 - 70
  36. VertRefresh 50 - 80.0
  37. # Modeline "1280x720" 74.25 1280 1390 1430 1650 720 725 730 750 +HSync +VSync
  38.  
  39. EndSection
  40.  
  41. Section "Device"
  42. Identifier "Card0"
  43. Driver "intel"
  44. BusID "PCI:0:2:0"
  45. EndSection
  46.  
  47. Section "Device"
  48. Identifier "Card1"
  49. Driver "intel"
  50. BusID "PCI:0:2:0"
  51. EndSection
  52.  
  53. Section "Device"
  54. Identifier "Card0"
  55. Driver "intel"
  56. BusID "PCI:0:2:0"
  57. EndSection
  58.  
  59. Section "Screen"
  60. Identifier "Screen0"
  61. Device "Card0"
  62. Monitor "Main"
  63. Option "Primary"
  64. Option "PreferredMode" "1600x900"
  65. Option "Position" "0 0"
  66. DefaultDepth 24
  67. SubSection "Display"
  68. # Modes "1600x900" "1440x900" 1280X720" "1280x720"
  69. Depth 24
  70. EndSubSection
  71. EndSection
  72.  
  73. Section "Screen"
  74. Identifier "Screen1"
  75. Device "Card1"
  76. Monitor "HDMI1"
  77. Option "Position" "1601 0"
  78. DefaultDepth 24
  79. SubSection "Display"
  80. Depth 24
  81. Modes "1280x720"
  82. Virtual 2880 720
  83. EndSubSection
  84. SubSection "Display"
  85. Depth 24
  86. Modes "1920x1080" "1600x900"
  87. Virtual 3520 1080
  88. EndSubSection
  89. EndSection
  90.  
  91. Section "Screen"
  92. Identifier "Screen2"
  93. Device "Card2"
  94. Monitor "VGA1"
  95. Option "Position" "1601 0"
  96. Option "RightOf" "Screen0"
  97. DefaultDepth 24
  98. SubSection "Display"
  99. Depth 24
  100. Modes "1280x720"
  101. EndSubSection
  102. EndSection
  103. bash-4.3$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement