Greetings!
I am attempting to get a Dual Monitor Display using aticonfig (and/or manual editing my xorg.conf file). My graphics card (a Radeon HD 4350 with latest ati drivers ) has only a single output but I am using a splitter cable to connect it to two monitors.
I am want one monitor to be 1600x1200 and the second monitor to be 800x600.
This is the command I had tried to no avail.
aticonfig -fq --initial --dtop=horizontal,reverse --resolution=0,1600x1200,1280x1024,1024x768 --mode2=800x600
What am I missing? Should I be using this configuration utility? Or should I be trying to manual edit my xorg.config? All the information I have been able to find seems specific to Dual Head Displays.
EDIT: It occurs to me to post my edited xorg.conf file
Quote:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
Option "Xinerama" "true"
EndSection
Section "Files"
EndSection
Section "Module"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
Identifier "Monitor0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Monitor"
Identifier "Monitor1"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "Device0"
Driver "fglrx"
Option "DesktopSetup" "horizontal,reverse"
Option "Mode2" "800x600"
BusID "PCI:7:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1600x1200" "1280x1024" "1024x768"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Device0"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "800x600"
EndSubSection
EndSection
|
Thank you for the input!