[ale] video woes

Brian Pitts brian at polibyte.com
Sun Sep 7 12:34:36 EDT 2008


Out of curiosity, what does

xrandr --verbose

output when your external monitor is connected?

In my setup, my laptop display supports 1280x800 and my monitor supports
1440x900

I am able to enable dual-display with

xrandr --output VGA --auto --right-of LVDS

and disable it with

xrandr --output VGA --off

I am able to switch from my laptop display to my monitor with

xrandr --output VGA --auto
xrandr --output LVDS --off

and to switch back with

xrandr --output LVDS --auto
xrandr --output VGA --off

My xorg.conf is below for reference. I calculated the "Virtual" line by
adding the horizontal resolution of my two displays and taking the
maximum vertical resolution.

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"us"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizEdgeScroll"	"0"
	Option		"SHMConfig"		"true"
EndSection

Section "Device"
	Identifier	"Configured Video Device"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
	SubSection "Display"
                Depth   24
                Virtual 2720 900
        EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Synaptics Touchpad"
EndSection

-Brian


More information about the Ale mailing list