I've been trying to configure so that I can use my external monitor alongside my laptop screen. Fiddled about in Xorg and got what I think
1f40
will (hopefully) work. But I've heard all sorts of stories about X failing to load and causing all sorts of havoc. So before I save the changes with sudo can someone check this to see if it is likely to work/fail to load?
I've not touched anything prior to the Device sections (Input Devices and what-not), so I've not included it.
Code:
Section "Device"
Identifier "NVIDIA Corporation NV17 [GeForce4 420 Go] 0"
Driver "nv"
BusID "PCI:1:0:0"
Screen 0
EndSection
Section "Device"
Identifier "NVIDIA Corporation NV17 [GeForce4 420 Go] 1"
Driver "nv"
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Monitor"
Identifier "Main Monitor"
Option "DPMS"
HorizSync 28-51
VertRefresh 43-60
EndSection
Section "Monitor"
Identifier "Second Monitor"
Option "DPMS"
HorizSync 28-51
VertRefresh 43-60
EndSection
Section "Screen"
Identifier "Main Screen"
Device "NVIDIA Corporation NV17 [GeForce4 420 Go] 0"
Monitor "Main Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "Screen"
Identifier "Second Screen"
Device "NVIDIA Corporation NV17 [GeForce4 420 Go] 1"
Monitor "Second Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "ServerFlags"
Option "Xinerama" "true"
EndSection
Section "ServerLayout"
Identifier "Double Layout"
Screen "Main Screen"
Screen "Second Screen" RightOf "Main Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "Synaptics Touchpad"
EndSection
Section "DRI"
Mode 0666
EndSection
The parts I'm most unsure of are the ServerFlags (is it really needed) and ServerLayout.
I'm using default nv driver, so I can't use Twin View at the moment, just Xinerama.