2 # These are the default variables for the console program
4 # DON'T ALTER this file, copy it to ../local and alter that
5 # instead. This file will be overwritten with new releases
7 # Copyright (c) 1999 Dirk Koopman G1TLH
11 # The colour pairs are:-
13 # 0 - $foreground, $background
14 # 1 - RED, $background
15 # 2 - BROWN, $background
16 # 3 - GREEN, $background
17 # 4 - CYAN, $background
18 # 5 - BLUE, $background
19 # 6 - MAGENTA, $background
26 if ($ENV{'TERM'} =~ /xterm/) {
27 $ENV{'TERM'} = 'color_xterm';
28 $foreground = COLOR_BLACK();
29 $background = A_BOLD|COLOR_WHITE();
31 if ($ENV{'TERM'} =~ /(console|linux)/) {
32 $foreground = COLOR_WHITE();
33 $background = COLOR_BLACK();
37 [ '^DX de [\-\w]+:\s+(14[45]\d\d\d|5[01]\d\d\d)', COLOR_PAIR(1) ],
38 [ '^DX', COLOR_PAIR(2) ],
39 [ '^To', COLOR_PAIR(3) ],
40 [ '^WWV', COLOR_PAIR(4) ],
41 [ '^WX', COLOR_PAIR(5) ],