]> git.armaanb.net Git - lightcards.git/blobdiff - config.py
Add quit_key option
[lightcards.git] / config.py
index 46d6bf0761805faed8ae477ed06bc581c3d12a0b..6cd69a3784cad2f3e0d4d0ecba28cae9e068602d 100644 (file)
--- a/config.py
+++ b/config.py
@@ -1,6 +1,7 @@
 ###############################################################################
 # LIGHTCARDS DEFAULT CONFIG FILE                                              #
 ###############################################################################
+import curses
 
 ###############################################################################
 # STARTUP OPTIONS
@@ -15,15 +16,11 @@ default_view = 1
 ###############################################################################
 # APPEARANCE
 
-disp_progress = True
 progress_char = "ยป"
-disp_sidebar = True
-disp_bar = True
 
-bar_sections = ["starred_status", "starred_count", "side", "view"]
-
-highlight_color = "green"
-starred_color = "yellow"
+highlight_color = curses.COLOR_CYAN
+starred_color = curses.COLOR_YELLOW
+error_color = curses.COLOR_RED
 
 ###############################################################################
 # KEYBINDINGS
@@ -43,10 +40,13 @@ view_one = "1"
 view_two = "2"
 view_three = "3"
 
+quit_key = "q"
+
 ###############################################################################
 # OTHER
 
 confirm_quit = True
+show_menu_at_end = True
 debug = False
 
 ###############################################################################