On 23:58 Sat 01 Dec , Joe wrote: > > On 1-Dec-07, at 10:44 PM, Donnie Berkholz wrote: > >> With the new randr-1.2 that's in all of the 2.x intel drivers, multiple >> monitors are handled a bit differently. You just have a single device >> section that refers to both of them. Take a look at >> http://www.intellinuxgraphics.org/dualhead.html for details. > > Thank you so much for your help. However, I'm slow at this. Sorry. :-( > Here's my updated xorg.conf file: > > Section "Device" > Identifier "Intel 945G " > Driver "intel" > > Option "monitor-LVDS" "Builtin" > Option "monitor-TMDS-1" "External Monitor" > > EndSection > > Section "Monitor" > Identifier "Builtin" > Option "PreferredMode" "1280x800" > EndSection > > Section "Monitor" > Identifier "External Monitor" > VendorName "DEL" > ModelName "DELL 2407WFP" > > Option "PreferredMode" "1920x1200" > Option "ReducedBlanking" > EndSection
This part looks mostly good, except you haven't set the relative relationships of the two screens (left, right, etc). That belongs in the monitor sections now, according to the link I posted last time. > Section "Screen" > > Identifier "Default Screen" > Device "Intel 945G" > Monitor "Builtin" > > DefaultDepth 24 > > SubSection "Display" > Depth 24 > Modes "1280x800" "1024x768" "640x480" > Virtual 2048 2048 > EndSubSection > > EndSection > > Section "Screen" > > Identifier "External Screen" > Device "Intel 945G" > Monitor "External Monitor" > > DefaultDepth 24 > > SubSection "Display" > Depth 24 > Modes "1920x1200" "1600x1200" "1680x1050" > "1024x768" "640x480" > Virtual 2048 2048 > EndSubSection > > EndSection > > Section "ServerLayout" > Identifier "Dual Layout" > Screen 0 "Default Screen" > Screen 1 "External Screen" Above "Built-in Screen" > > Option "Clone" "On" > #Option "Xinerama" "On" > > InputDevice "Generic Keyboard" > InputDevice "Configured Mouse" > EndSection You've still got a mixed combination of old and new setups. You should only have one screen section, and your serverlayout section should not have two screens or anything related to dual screens in it (clone option). After making that change, I suppose you'll need to list all the modes you care about for either monitor in the single screen section. Thanks, Donnie -- [EMAIL PROTECTED] mailing list
