On 26/01/06, Daniel G. Siegel <[EMAIL PROTECTED]> wrote: > > is there some way to change the font color, or more generally, > all colors of the terminal (i mean those from F1 to F6)? >
Take a look at the console_codes(4) man page, especially at the "ESC ] P" sequence. It allows you to set color with given number to arbitrary RGB value, for e.g.: echo -en "\033]P0113311" echo -en "\033]P761FFCF" echo -en "\033]P9FF7711" clear (I'm not sure though, whether this sequence works on plain vt, without frame buffer support.) Regards, -- Robert Nowotniak, http://robert.nowotniak.com/ GPG: 1024D/AD2800F1 B7D2 EBA3 01F1 0049 013D E8A6 AEBA 7C82 AD28 00F1 _______________________________________________ arch mailing list [email protected] http://www.archlinux.org/mailman/listinfo/arch
