Code

Modified noping to follow terminal emulators color palette
authormiddleO <middleO@users.noreply.github.com>
Sun, 5 Feb 2017 09:05:39 +0000 (11:05 +0200)
committermiddleO <middleO@users.noreply.github.com>
Sun, 5 Feb 2017 09:05:39 +0000 (11:05 +0200)
src/oping.c

index 0cfe64672065c0a99dd3a1d2e9ca8bc9bd5763ce..f2e48a6c28b1b49359eeeff1ae689c9ae05339ff 100644 (file)
@@ -1360,10 +1360,11 @@ static int pre_loop_hook (pingobj_t *ping) /* {{{ */
        if (has_colors () == TRUE)
        {
                start_color ();
-               init_pair (OPING_GREEN,  COLOR_GREEN,  /* default = */ 0);
-               init_pair (OPING_YELLOW, COLOR_YELLOW, /* default = */ 0);
-               init_pair (OPING_RED,    COLOR_RED,    /* default = */ 0);
-               init_pair (OPING_GREEN_HIST,  COLOR_GREEN,  COLOR_BLACK);
+               use_default_colors ();
+               init_pair (OPING_GREEN,  COLOR_GREEN,  /* default = */ -1);
+               init_pair (OPING_YELLOW, COLOR_YELLOW, /* default = */ -1);
+               init_pair (OPING_RED,    COLOR_RED,    /* default = */ -1);
+               init_pair (OPING_GREEN_HIST,  COLOR_GREEN,  -1);
                init_pair (OPING_YELLOW_HIST, COLOR_YELLOW, COLOR_GREEN);
                init_pair (OPING_RED_HIST,    COLOR_RED,    COLOR_YELLOW);
        }