I need some help i've set my system up so that i have 2 X screens.
(Screen0 Screen1) and everything works fine. it strats but the Xserver
only startes on one of the monitors. the other is just the gray screen
after you startX. i want to run a program in the other screen of X or
maybe even another X server. I am stumped on how to do it. any help
would be great or any info on Multi X Screens / X servers. Thanks Zippo


Section "ServerLayout"
        Identifier      "ServerLayout"
        Screen          "Screen0" 
        Screen          "Screen1"
        InputDevice     "Mouse0" "CorePointer"
        InputDevice     "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        FontPath "unix/:7100"
EndSection

Section "Module"
        Load  "dbe"             # Double-buffering
        #Load  "GLcore"         # OpenGL support
        #Load  "dri"            # Direct rendering infrastructure
        Load  "glx"             # OpenGL X protocol interface
        Load  "extmod"          # Misc. required extensions
        #Load  "v4l"            # Video4Linux
        #Load  "record" # X event recorder
        #You only need the following two modules if you do not use xfs.
        #Load  "freetype"        # TrueType font handler
        #Load  "type1"          # Adobe Type 1 font handler
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Device" "/dev/mouse"
        Option      "Protocol" "IMPS/2"
        Option      "Emulate3Buttons" "off"
        Option      "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
        Identifier      "A90f"
        VendorName      "ViewSonic"
        ModelName       "A90F"
        HorizSync       30-86
        VertRefresh     50-150
        Option          "dpms"
EndSection

Section "Monitor"
        Identifier      "TV"
        VendorName      "MAGNAVOX"
        ModelName       "just a tv"
        HorizSync       30-50
        VertRefresh     60
EndSection

Section "Device"
        Identifier "NVIDIA GeForce 4 (generic)"
        Driver "nvidia"
        BusID "PCI:1:5:0"
        Screen 0
EndSection

Section "Device"
        Identifier "NVIDIA Geforce 4 TV"
        Driver "nvidia"
        BusID "PCI:1:5:0"
        Screen 1
EndSection

Section "Screen"
        Identifier "Screen0"
        Device "NVIDIA GeForce 4 (generic)"
        Monitor "A90f"
        DefaultDepth 24
        Option "NoLogo" "yes"
        Option "DigitalVibrance" "3"
        Option "Stereo" "3"
        Option "HWCursor" "yes"
        #**** Dual monitor **** 
        #Option "TwinView"
        #Option "SecondMonitorHorizSync"   "30-50"
        #Option "SecondMonitorVertRefresh" "60"
        #Option "MetaModes" "800x600 , 800x600 ; 640x480 , 640x480"
        
        Subsection "Display"
                Depth 24
                Modes "1280x1024" "800x600" "640x480"
        EndSubSection
EndSection

Section "Screen"
        Identifier "Screen1"
        Device "Nvidia Geforce 4 TV"
        Monitor "TV"
        DefaultDepth 24 
        Option "TVStandard" "NTSC-M"
        Option "ConnectedMonitor" "TV"
        Option "TVOutFormat" "COMPOSITE"
        Subsection "Display"
                Depth 24
                Modes "600x800"
        EndSubSection
EndSection

Section "DRI"
        Mode 0666
EndSection

Reply via email to