How do I change the colour depth? It says online to edit the xorg.conf file, but I don't have that. I am running Debian XFCE on a Powerbook G4
Asked
Active
Viewed 6,699 times
1 Answers
5
Create an xorg.conf file by running Xorg -configure. Then edit the Depth entry in the Display subsection of the Screen section.
You can start an X server with a non-default depth by running e.g. startx -- -depth 8.
If you already have a running X server, pick a different display number (if the display you choose is already in use, you'll get the message “Server is already active for display NUMBER”). The default display number is 0. To indicate the display number, pass a :NUMBER argument to the X server. For example:
Xorg :1 -configure
startx -- :1 -depth 8
Gilles 'SO- stop being evil'
- 807,993
- 194
- 1,674
- 2,175
-
1I cannot do this: http://unix.stackexchange.com/questions/28119/not-able-to-create-xorg-conf-file – gadgetmo Jan 01 '12 at 14:33
-
Me neither: `$ sudo Xorg -configure Server is already active for display 0 ` – Michael Durrant Oct 01 '13 at 15:40
-
@MichaelDurrant See my answer to gadgetmo's question. – Gilles 'SO- stop being evil' Oct 01 '13 at 16:47