On Thu, Feb 01, 2007 at 03:25:04PM +0300, cat chesheere wrote:
for example, in xorg.conf we have
...
Section "Screen"
...
DefaultDepth 24
...
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600"
"640x480"
EndSubSection
EndSection
...
But monitor can support also "1600x1200" resolution. and we need to add
it.
so, edit file like this:
...
SubSection "Display"
Depth 24
Modes "1600x1200" "1280x1024" "1024x768"
"800x600" "640x480"
EndSubSection
...
and reboot. X server resolution changed auotmatically to "1600x1200".
But we don't need to change resolution immediately.
we want only support it, not change.
First of all, this is a question better suited for
debian-user@lists.debian.org than debian-devel@lists.debian.org, so
please send any further messages to that list instead.
I'm not sure that I understand the question, but I believe that you want
to keep "1280x1024" as the default mode, right?
If you want to have "1600x1200" available as a mode but not as the
default mode, try putting it later in the list. That is, replace:
SubSection "Display"
Depth 24
Modes "1600x1200" "1280x1024"...
EndSubSection
with:
SubSection "Display"
Depth 24
Modes "1280x1024" "1600x1200"...
EndSubSection
--
David Härdeman