colors on select
[taskasaur.git] / config.h
1
2 #ifndef __CONFIG_H__
3 #define __CONFIG_H__
4
5 #include <ncurses.h>
6
7 static char font[] = "Source Code Pro:size=12";
8
9
10 /* COLORS */
11
12 /* Use the ncurses defined colors, here's a list of them:
13  *      COLOR_BLACK
14  *      COLOR_RED
15  *      COLOR_GREEN
16  *      COLOR_YELLOW
17  *      COLOR_BLUE
18  *      COLOR_MAGENTA
19  *      COLOR_CYAN
20  *      COLOR_WHITE
21 */
22
23 static int selected_color = COLOR_CYAN;
24 static int non_selected_color = COLOR_WHITE;
25
26 /* KEYS */
27 #define BINDING_QUIT 'q'
28 #define BINDING_SCROLL_UP 'k'
29 #define BINDING_SCROLL_DOWN 'j'
30 #define BINDING_JUMP_TOP 'g'
31 #define BINDING_JUMP_BOTTOM 'G'
32 #define BINDING_SELECT '\n'
33
34 #endif