Is there a reliable way to check how many colors my terminal emulator supports?
If echo $TERM
prints xterm
, does that unequivocally tell me how many colors my terminal emulator supports? How could I check this information reliably?
Is there a reliable way to check how many colors my terminal emulator supports?
If echo $TERM
prints xterm
, does that unequivocally tell me how many colors my terminal emulator supports? How could I check this information reliably?
The value of $TERM
does not give much information about the number of supported colors. Many terminals advertise themselves as xterm
, and might support any number of colors (2, 8, 16, 88 and 256 are common values).
You can query the value of each color with the OSC 4 ; c ; ? BEL
control sequence. If the color number c
is supported, and if the terminal understands this control sequence, the terminal will answer back with the value of the color. If the color number is not supported or if the terminal doesn't understand this control sequence, the terminal answers nothing. Here's a bash/zsh snippet to query whether color 42 is supported (redirect to/from the terminal if necessary):
printf '\e]4;%d;?\a' 42
if read -d $'\a' -s -t 1; then … # color 42 is supported
Among popular terminals, xterm and terminals based on the VTE library (Gnome-terminal, Terminator, Xfce4-terminal, …) support this control sequence; rxvt, konsole, screen and tmux don't.
I don't know of a more direct way.
read -d $'\a' -s -t 1
does?
– Amelio Vazquez-Reina
Nov 01 '11 at 22:50
\a
(bell character), without echoing input, with a timeout of 1 second.
– Gilles 'SO- stop being evil'
Nov 01 '11 at 22:55
tput colors
, which returned 8
. What gives?
– l0b0
Nov 02 '11 at 08:44
tput colors
queries the terminfo database. Chances are that you have TERM=xterm
. Xterm can support at least 2, 8, 16, 88 or 256 colors depending on the version and on compile- and run-time options, but the terminfo database can only store one value. You can set e.g. TERM=xterm+256color
, but then you'll be annoyed when you log in to a machine that doesn't have this entry in its termcap/terminfo database.
– Gilles 'SO- stop being evil'
Nov 02 '11 at 11:59
read
this non-interactively from the terminal? I've tried a printf | while read
, but it just gets the characters from printf
, not what will actually be printed by the terminal.
– l0b0
Feb 24 '12 at 14:09
printf … >/dev/tty
) and then read from the terminal (read … </dev/tty
). Xterm responds to the OSC 4; …; ? BEL
sequence by injecting keystrokes.
– Gilles 'SO- stop being evil'
Feb 24 '12 at 15:01
TERM
variable correctly with a -256color
suffix... :-(
– jamadagni
Oct 11 '15 at 01:36
You can use
$ tput colors
On my debian install tput is part of the ncurses-bin
package which is installed by default.
TERM
, not how many colors it can actually support given an appropriate TERM
– MestreLion
Feb 03 '15 at 23:31
There is a perl script, 256colors2.pl, that will display all the colours on your terminal.