From 58a56061b3236a1a4442d64679c575d5eb65d90b Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Sun, 31 Jan 2021 12:38:16 -0500 Subject: [PATCH] Update help screen text --- lightcards/display.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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() -- 2.39.2