nausea

curses audio visualizer
git clone git://git.2f30.org/nausea
Log | Files | Refs | README | LICENSE

commit 89cce4643d0405b4387e9f0c4a0e98d64566ef80
parent 46130eb508efa681b2a0bce7a76f1c9661ee6fea
Author: sin <sin@2f30.org>
Date:   Fri,  3 Oct 2014 21:10:40 +0100

Use default bg

Diffstat:
Mnausea.c | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/nausea.c b/nausea.c @@ -69,9 +69,9 @@ static struct color_range { int scaled_min; int scaled_max; } color_ranges[] = { - { 1, 0, 20, COLOR_RED, COLOR_BLACK, 0, 0 }, - { 2, 20, 60, COLOR_YELLOW, COLOR_BLACK, 0, 0 }, - { 3, 60, 100, COLOR_GREEN, COLOR_BLACK, 0, 0 } + { 1, 0, 20, COLOR_RED, -1, 0, 0 }, + { 2, 20, 60, COLOR_YELLOW, -1, 0, 0 }, + { 3, 60, 100, COLOR_GREEN, -1, 0, 0 } }; static void @@ -509,6 +509,7 @@ main(int argc, char *argv[]) keypad(stdscr, TRUE); curs_set(FALSE); /* hide cursor */ timeout(msec); + use_default_colors(); if (colors && has_colors() == FALSE) { endwin();