View previous topic :: View next topic |
Author |
Message |
Rawn027 Apprentice
Joined: 01 Mar 2004 Posts: 286
|
Posted: Sun Apr 23, 2006 6:48 am Post subject: 20" Widescreen 1680x1050 - HELP |
|
|
I have a 20" widescreen monitor that I need to get working in xorg with the correct resolution... any ideas? _________________ AMD Athlon 64 1.8
1GB DDR 400 RAM
Nvidia 6600 GT
MacBook Pro Duo 1.67
1GB DDR2 667 RAM
ATI x1600 Mobility |
|
Back to top |
|
|
NeddySeagoon Administrator
Joined: 05 Jul 2003 Posts: 54577 Location: 56N 3W
|
Posted: Sun Apr 23, 2006 2:13 pm Post subject: |
|
|
Rawn027,
Read paying close attention to the section on modeline.
X is pre programmed with the standard vesa 4:3 modes. It can do any arbitary resolution you want, you need a modeline to tell it how,
then you call up the modeline in your Modes staements in the Screeen section.
The hard bit it generating the numbers for the modeline. There are lots of modeline generators on the web here is one. _________________ Regards,
NeddySeagoon
Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail. |
|
Back to top |
|
|
evoweiss Veteran
Joined: 07 Sep 2003 Posts: 1678 Location: Edinburgh, UK
|
Posted: Sun Apr 23, 2006 6:36 pm Post subject: Re: 20" Widescreen 1680x1050 - HELP |
|
|
Rawn027 wrote: | I have a 20" widescreen monitor that I need to get working in xorg with the correct resolution... any ideas? |
Not sure if this will do the trick, but I had a similar problem which was answered in the following thread.
Best,
Alex |
|
Back to top |
|
|
frodoontop Tux's lil' helper
Joined: 19 Jan 2004 Posts: 86
|
Posted: Sun Apr 23, 2006 7:06 pm Post subject: |
|
|
The following sections in Xorg do the trick for me:
Code: |
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "LCD Panel 1680x1050"
HorizSync 30.0 - 96.0
VertRefresh 75.0 - 160.0
Modeline "1680x1050_75.00" 188.07 1680 1800 1984 2288 1050 1051 1054 1096 -HSync +Vsync
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 16
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1680x1050_75.00" "1024x768"
EndSubSection
EndSection
|
_________________ Rubyripper, a secure audio ripper for linux. Look at the wiki page http://wiki.hydrogenaudio.org/index.php?title=Rubyripper for technical and developer info, screenshots and discussion about it's future. |
|
Back to top |
|
|
|