Advertisement
Guest User

Untitled

a guest
Nov 24th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1.  
  2. Section "Monitor"
  3. Identifier "monitor0"
  4. EndSection
  5.  
  6. Section "Monitor"
  7. Identifier "monitor1"
  8. EndSection
  9.  
  10. Section "ServerFlags"
  11. Option "AutoAddGPU" "off"
  12. EndSection
  13.  
  14. Section "Device"
  15. Identifier "graphic0"
  16. Driver "nouveau"
  17. Option "NoLogo" "1" # Remove nvidia branding at startup
  18. BusId "PCI:3:0:0"
  19. #MatchSeat "seat-1" # Needed when only configuring part of Xorg for non-seat0.
  20. #Option "Monitor-DVI-1" "monitor1" #assigns monitor configuration to graphic output port
  21. EndSection
  22.  
  23. Section "Device"
  24. Identifier "graphic1"
  25. Driver "nouveau"
  26. Option "NoLogo" "1" # Remove nvidia branding at startup
  27. BusId "PCI:1:0:0"
  28. MatchSeat "seat-1" # Needed when only configuring part of Xorg for non-seat0.
  29. #Option "Monitor-DVI-1" "monitor1" #assigns monitor configuration to graphic output port
  30. EndSection
  31.  
  32. Section "Screen"
  33. Identifier "screen0"
  34. Device "graphic0"
  35. Monitor "monitor0"
  36. EndSection
  37.  
  38. Section "Screen"
  39. Identifier "screen1"
  40. Device "graphic1"
  41. Monitor "monitor1"
  42. EndSection
  43.  
  44. Section "ServerLayout"
  45. # The Identifier isn't really important but must be unique.
  46. Identifier "seat0"
  47.  
  48. # This controls which Screen section is used in the layout, which in turn
  49. # dictates which GPU and monitor will be used. The numbers can be omitted
  50. # if only one Screen is used (normally the case unless you are combining
  51. # monitors from different video cards).
  52. Screen "screen0" 0 0
  53.  
  54. # InputDevice sections can usually be omitted
  55. #InputDevice "mouse1" "CorePointer"
  56. #InputDevice "keyboard1" "CoreKeyboard"
  57.  
  58. Option "SingleCard" "on" # use this to simplfied isolatedevice option
  59.  
  60. # MatchSeat means this layout will only be used when the "-seat seat-1"
  61. # parameter is given to /usr/bin/X, which most display managers will do
  62. # automatically.
  63. #MatchSeat "seat-1"
  64. EndSection
  65.  
  66. Section "ServerLayout"
  67. # The Identifier isn't really important but must be unique.
  68. Identifier "seat-1"
  69.  
  70. # This controls which Screen section is used in the layout, which in turn
  71. # dictates which GPU and monitor will be used. The numbers can be omitted
  72. # if only one Screen is used (normally the case unless you are combining
  73. # monitors from different video cards).
  74. Screen "screen1" 0 0
  75.  
  76. # InputDevice sections can usually be omitted
  77. #InputDevice "mouse1" "CorePointer"
  78. #InputDevice "keyboard1" "CoreKeyboard"
  79.  
  80. Option "SingleCard" "on" # use this to simplfied isolatedevice option
  81.  
  82. # MatchSeat means this layout will only be used when the "-seat seat-1"
  83. # parameter is given to /usr/bin/X, which most display managers will do
  84. # automatically.
  85. MatchSeat "seat-1"
  86. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement