Anyone have any working Xorg.conf for a similar setup? Good graphics card, one good and one crappy monitor?
I'll stick mine below.
Code: Select all
Section "Module"
Load "dbe" # Double buffer extension
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
Load "type1"
Load "speedo"
Load "freetype"
Load "glx"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/Speedo/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/CID/"
FontPath "/usr/share/fonts/75dpi/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/local/"
EndSection
Section "ServerFlags"
Option "Xinerama" "off"
EndSection
Section "InputDevice"
Identifier "Keyboard1"
Driver "Keyboard"
Option "AutoRepeat" "500 30"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection
Section "Monitor"
Identifier "LCD"
HorizSync 31.5-67
#VertRefresh 50-70
VertRefresh 80
EndSection
Section "Monitor"
Identifier "My Monitor"
HorizSync 30-64
VertRefresh 75
EndSection
Section "Device"
Identifier "NVIDIA Quadra FX (generic)"
Driver "nvidia"
Option "TwinView" "true"
# For some reason dell is first and lcd second so its: "Dell, LCD"
Option "MetaModes" "1024x768, 1280x1024; 1024x768,1024x768"
Option "TwinViewOrientation" "LeftOf"
EndSection
Section "Screen"
Identifier "Screen 1"
Device "NVIDIA Quadra FX (generic)"
Monitor "My Monitor"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection


