colors, config
[taskasaur.git] / config.h
index 5668a95..24434da 100644 (file)
--- 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'