]> git.armaanb.net Git - lightcards.git/blobdiff - config.py
Don't overwrite existing local config file
[lightcards.git] / config.py
index e12faa3f25da77544242624193936d3dc877a240..6cd69a3784cad2f3e0d4d0ecba28cae9e068602d 100644 (file)
--- a/config.py
+++ b/config.py
@@ -1,6 +1,7 @@
 ###############################################################################
 # LIGHTCARDS DEFAULT CONFIG FILE                                              #
 ###############################################################################
+import curses
 
 ###############################################################################
 # STARTUP OPTIONS
@@ -17,8 +18,9 @@ default_view = 1
 
 progress_char = "ยป"
 
-highlight_color = "green"
-starred_color = "yellow"
+highlight_color = curses.COLOR_CYAN
+starred_color = curses.COLOR_YELLOW
+error_color = curses.COLOR_RED
 
 ###############################################################################
 # KEYBINDINGS
@@ -38,6 +40,8 @@ view_one = "1"
 view_two = "2"
 view_three = "3"
 
+quit_key = "q"
+
 ###############################################################################
 # OTHER