X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=config.py;h=6cd69a3784cad2f3e0d4d0ecba28cae9e068602d;hb=967023aae085b303fa35a3c9572311b953ae8ae9;hp=64296bbbb3e7d5c27c3f356f944555fad85e7589;hpb=dd109cb4a1b49f920e36e5732417c4a3d5582821;p=lightcards.git diff --git a/config.py b/config.py index 64296bb..6cd69a3 100644 --- a/config.py +++ b/config.py @@ -1,6 +1,29 @@ -############### -# KEYBINDINGS # -############### +############################################################################### +# LIGHTCARDS DEFAULT CONFIG FILE # +############################################################################### +import curses + +############################################################################### +# STARTUP OPTIONS + +alphabetize = False +shuffle = False +reverse = False +cache = True + +default_view = 1 + +############################################################################### +# APPEARANCE + +progress_char = "»" + +highlight_color = curses.COLOR_CYAN +starred_color = curses.COLOR_YELLOW +error_color = curses.COLOR_RED + +############################################################################### +# KEYBINDINGS card_prev = ["h", "KEY_LEFT"] card_next = ["l", "KEY_RIGHT"] @@ -16,3 +39,14 @@ menu_disp = "m" view_one = "1" view_two = "2" view_three = "3" + +quit_key = "q" + +############################################################################### +# OTHER + +confirm_quit = True +show_menu_at_end = True +debug = False + +###############################################################################