X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fconsole.pl;h=1b390bdc7ca0b92ee52ff2d109bad7730d9f00d4;hb=e6a53556f10b5d2f831dcd7b83655430c9b1a137;hp=8f028aa7ab9d7e8b2e9bde85e2386b1f66b8caf0;hpb=6f82c4f1701f45cbae4bce7518eb40e645e6360a;p=spider.git diff --git a/perl/console.pl b/perl/console.pl index 8f028aa7..1b390bdc 100755 --- a/perl/console.pl +++ b/perl/console.pl @@ -68,6 +68,14 @@ sub do_initscr init_pair(4, COLOR_CYAN, $background); init_pair(5, COLOR_BLUE, $background); init_pair(6, COLOR_MAGENTA, $background); + init_pair(7, COLOR_RED, COLOR_BLUE); + init_pair(8, COLOR_YELLOW, COLOR_BLUE); + init_pair(9, COLOR_GREEN, COLOR_BLUE); + init_pair(10, COLOR_CYAN, COLOR_BLUE); + init_pair(11, COLOR_BLUE, COLOR_RED); + init_pair(12, COLOR_MAGENTA, COLOR_BLUE); + init_pair(13, COLOR_YELLOW, COLOR_GREEN); + init_pair(14, COLOR_RED, COLOR_GREEN); } $top = $scr->subwin(LINES()-4, COLS, 0, 0);