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? \a (bell character), without echoing input, with a timeout of 1 second. 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. printf … >/dev/tty) and then read from the terminal (read … </dev/tty). Xterm responds to the OSC 4; …; ? BEL sequence by injecting keystrokes. 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 There is a perl script, 256colors2.pl, that will display all the colours on your terminal.