X-Git-Url: https://git.danieliu.xyz/?p=taskasaur.git;a=blobdiff_plain;f=config.h;h=24434daa35d11f038edee268ac612ef2b2d8e6de;hp=5668a954159c35413744eac2830627f05b25c6c4;hb=95a6b4ad62f8ef4ddee2f6416a330735d12d5dae;hpb=c263062e7183d2c56149c5188a70acd0ff5cb513 diff --git a/config.h b/config.h index 5668a95..24434da 100644 --- a/config.h +++ b/config.h @@ -2,4 +2,27 @@ static char font[] = "Source Code Pro:size=12"; +/* COLORS */ + +/* Use the ncurses defined colors, here's a list of them: + * COLOR_BLACK + * COLOR_RED + * COLOR_GREEN + * COLOR_YELLOW + * COLOR_BLUE + * COLOR_MAGENTA + * COLOR_CYAN + * COLOR_WHITE +*/ + +static int selected_color = COLOR_CYAN; +static int non_selected_color = COLOR_WHITE; + +/* KEYS */ +#define BINDING_QUIT 'q' +#define BINDING_SCROLL_UP 'k' +#define BINDING_SCROLL_DOWN 'j' +#define BINDING_JUMP_TOP 'g' +#define BINDING_JUMP_BOTTOM 'G' +#define BINDING_SELECT '\n'