I want to configure screen resolution and orientation of second monitor. I add section response for external monitor:
Xorg now detected correctly output:
But i have problem with resolution. LVDS is correctly. 1600x900 but HDMI3 is still 1440x600 What I am doing wrong...
Any body can help?
Code:
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Monitor"
Identifier "HDMI3"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Xorg now detected correctly output:
Code:
[ 2433.926] (II) intel(0): Output LVDS1 using monitor section Monitor0
[ 2433.926] (II) intel(0): Output VGA1 has no monitor section
[ 2433.930] (II) intel(0): Output HDMI1 has no monitor section
[ 2433.939] (II) intel(0): Output DP1 has no monitor section
[ 2433.944] (II) intel(0): Output HDMI2 has no monitor section
[ 2433.984] (II) intel(0): Output HDMI3 using monitor section HDMI3
[ 2433.993] (II) intel(0): Output DP2 has no monitor section
[ 2434.002] (II) intel(0): Output DP3 has no monitor section
But i have problem with resolution. LVDS is correctly. 1600x900 but HDMI3 is still 1440x600 What I am doing wrong...
Code:
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1600x900"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "HDMI3"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1920x1080"
EndSubSection
EndSection
Any body can help?