hook up read from file
[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 /* COLORS */
10
11 /* Use the ncurses defined colors, here's a list of them:
12  *      COLOR_BLACK
13  *      COLOR_RED
14  *      COLOR_GREEN
15  *      COLOR_YELLOW
16  *      COLOR_BLUE
17  *      COLOR_MAGENTA
18  *      COLOR_CYAN
19  *      COLOR_WHITE
20 */
21
22 static int selected_color = COLOR_MAGENTA;
23 static int non_selected_color = COLOR_WHITE;
24 static int menu_selected_color = COLOR_CYAN;
25 static int menu_non_selected_color = COLOR_GREEN;
26
27 /* KEYS */
28 #define BINDING_QUIT 'q'
29 #define BINDING_SCROLL_UP 'k'
30 #define BINDING_SCROLL_DOWN 'j'
31 #define BINDING_JUMP_TOP 'g'
32 #define BINDING_JUMP_BOTTOM 'G'
33 #define BINDING_MOVE_ITEM_UP 'K'
34 #define BINDING_MOVE_ITEM_DOWN 'J'
35 #define BINDING_DELETE_ITEM 'D'
36 #define BINDING_SELECT '\n'
37
38 #endif