Linux, Xorg: intel und nvidia gleichzeitig nutzen
/etc/X11/xorg.conf
Section "ServerLayout"
    Identifier     "myLayout"
    Screen  0  "screen1" 0 0
    Screen  1   "screen2" RightOf "screen1"
EndSection
Section "Device"
    Identifier  "Nvidia"
    Driver      "nvidia"
    BusID       "PCI:1:0:0"
EndSection
Section "Device"
    Identifier  "Intel"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection
Section "Monitor"
   Identifier  "monitor1"
EndSection
Section "Monitor"
   Identifier  "monitor2"
EndSection
Section "Screen"
   Identifier  "screen1"
   Device      "Nvidia"
   Monitor     "monitor1"
   DefaultDepth    24
   SubSection "Display"
       Depth       24
       Modes       "1920x1080"
   EndSubSection
EndSection
Section "Screen"
   Identifier  "screen2"
   Device      "Intel"
   Monitor     "monitor2"
   DefaultDepth    24
   SubSection "Display"
       Depth       24
       Modes       "1024x768"
   EndSubSection
EndSection
				
				
			
Leave a Reply