I have a dual-monitor (single graphics card, HDMI and VGA out) setup, and the monitors are a 30in+ tv and a 15in monitor. I want to have the TV as my main screen, it's plugged in via hdmi. The monitor is VGA and I want it to be used mostly as a system monitor, for like uptime, top, etc etc. Everything seems to be starting (launching) on the smaller monitor, like it's being detected as Screen 0 when X launches. I specified screen 0 is supposed to be the HDMI one in my xorg.conf.
I'm running debian, the card is an AMD Radeon card with the radeon driver.
This is my xorg.conf:
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "HDMIScreen" 0 0
	Screen	1      "VGAScreen" RightOf "HDMIScreen"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Monitor"
	Identifier   "HDMI"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier "VGA"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "radeon"
	Option "Monitor-HDMI-0" "HDMI" #xrandr -q shows hdmi out as "HDMI-0"
	Option "Monitor-VGA-0" "VGA" #and xrandr -q says vga out is VGA-0
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "VGAScreen"
	Device "Card0"
	Monitor "VGA"
EndSection

Section "Screen"
	Identifier "HDMIScreen"
	Device     "Card0"
	Monitor    "HDMI"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
Is there something simple wrong with the config file, or is there a command to run for further info? Thanks!