a38ea9489021cdadac0816bed00519b971b9c671
[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_CYAN;
23 static int non_selected_color = COLOR_WHITE;
24
25 /* KEYS */
26 #define BINDING_QUIT 'q'
27 #define BINDING_SCROLL_UP 'k'
28 #define BINDING_SCROLL_DOWN 'j'
29 #define BINDING_JUMP_TOP 'g'
30 #define BINDING_JUMP_BOTTOM 'G'
31 #define BINDING_MOVE_ITEM_UP 'K'
32 #define BINDING_MOVE_ITEM_DOWN 'J'
33 #define BINDING_DELETE_ITEM 'D'
34 #define BINDING_SELECT '\n'
35
36 #endif