On Fri, 28 Jul 2000, Clint Deckard wrote:
> X loads in 8bpp by default and I would like to restart x in 16bpp with
> startx -- -bpp 16.

You may also change your /etc/X11/XF86Config to start x with
16bpp. XF86Config can be edited by hand, or use xf86config (text based) or
Xconfigurator.

The file is split in a lot of "sections" (InputDevice, Monitor,
Device...). Nearly at the end there's something like this:

Section "Screen"
    Identifier  "Screen 1"
    Device      "Fire-GL1"
    Monitor     "Iiyama-Pro510"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "640x480" "800x600" "1024x768" "1280x1024"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "640x480" "800x600" "1024x768" "1280x1024"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1600x1200"
        ViewPort    0 0
    EndSubsection
EndSection

The paramater "DefaultDepth 24" shows wich "Subsection" is used by
default, that is 24 bpp here, with resolution 1600x1200.

Probably you have different sections there, so add DefaultDepth 16 at the
right place.

See also "man XF86Config" for lots of information :-)

Peter



-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs

Reply via email to