From: Armaan Bhojwani Date: Sun, 31 Jan 2021 17:38:16 +0000 (-0500) Subject: Update help screen text X-Git-Tag: v0.3.0~5 X-Git-Url: https://git.armaanb.net/?p=lightcards.git;a=commitdiff_plain;h=58a56061b3236a1a4442d64679c575d5eb65d90b Update help screen text --- diff --git a/lightcards/display.py b/lightcards/display.py index 71fec49..d45b9a4 100755 --- a/lightcards/display.py +++ b/lightcards/display.py @@ -128,8 +128,8 @@ def disp_card(stdscr, stack, headers, obj): def disp_help(stdscr, stack, headers, idx): """Display help screen""" stdscr.clear() - stdscr.addstr("LIGHTCARDS HELP SCREEN", curses.color_pair(1)) - stdscr.hline(1, 0, curses.ACS_HLINE, 23) + stdscr.addstr("LIGHTCARDS HELP", curses.color_pair(1) + curses.A_BOLD) + stdscr.hline(1, 0, curses.ACS_HLINE, 15) stdscr.addstr(2, 0, "Welcome to lightcards. Here are some keybindings to get\n" + "you started.\n\n" + @@ -137,10 +137,11 @@ def disp_help(stdscr, stack, headers, idx): "l, right next card\n" + "j, k, up, down flip card\n" + "i, / star card\n" + - "0, ^, home go to start of deck\n" + - "$, end go to end of deck\n" + + "0, ^, home go to the start of the deck\n" + + "$, end go to the end of the deck\n" + "H, ? open this screen\n\n" + - "More information can be found in the man page.\n" + + "More information can be found in the man page, or by\n" + + "running `lightcards --help`.\n\n" + "Press [q], [H], or [?] to go back.") while True: key = stdscr.getkey()