LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Dual Monitors, Swapping screen 1 for screen 0 (https://www.linuxquestions.org/questions/linux-hardware-18/dual-monitors-swapping-screen-1-for-screen-0-a-505740/)

almcneill 11-28-2006 09:29 PM

Dual Monitors, Swapping screen 1 for screen 0
 
Just out of curiosity, I was wondering if this has been done.

I have an nvidia GeForce FX 5500 agp card, standard svga out, dvi out, and tv out.

I am using 2 monitors, on the dvi out I have a 19", on the svga out I have a 17", current os installed is suse 10.1 (remastered).

I have set up my xorg.conf to do dual monitors (seperate x displays), the 17" sits above the 19", linux see's the svga as the primary out (screen 0), and the dvi as the secondary out (screen 1). NO XINERAMA or TWINVIEW, not to my taste.

I would like my dvi out to be the primary (screen 0) and the svga to be secondary (screen 1), and yes I have tried the obvious and reconfig'ed the xorg.conf file, but the dvi somehow keeps coming out as the secondary...

Any suggestions would be greatly appreciated.

acid_kewpie 11-30-2006 07:33 AM

if this is a standard xinerama config, not twinview or anything, it should just be a case of changing the initial screen declaration and the relative "leftof" or "rightof" entries. the first screen declared within the server section should be :0.0 and whatever screen is added as a relative to that screen would be the :0.1.

not done xinerama for a while now but it should just be the difference between
Code:

Section "ServerLayout"
  Screen Screen0
  Screen Screen1 leftof Screen0
  ...
EndSection

compared to
Code:

Section "ServerLayout"
  Screen Screen1
  Screen Screen0 rightof Screen1
  ...
EndSection

massive syntacical errors aside....

HappyTux 11-30-2006 12:54 PM

Try something like this changing to your settings of course the UseDisplayDevice is the important part.

Code:

Section "Device"
 Identifier "NVIDIA0"
 Driver "nvidia"
 Option "UseDisplayDevice" "DFP"
 Screen 0
 BusID "PCI:1:0:0"
EndSection


Section "Device"
 Identifier "NVIDIA1"
 Driver "nvidia"
 Option "UseDisplayDevice" "CRT"
 Screen 1
 BusID "PCI:1:0:0"
EndSection



All times are GMT -5. The time now is 12:49 PM.