diff --git a/bin/_ttbp.py b/bin/_ttbp.py index 06d0d0b..bf2a7c4 100644 --- a/bin/_ttbp.py +++ b/bin/_ttbp.py @@ -333,7 +333,8 @@ def main_menu(): "browse global feels", "change your settings", "send some feedback", - "see credits"] + "see credits", + "read documentation"] print("you're at ttbp home. remember, you can always press to come back here.\n\n") print_menu(menuOptions) @@ -376,6 +377,9 @@ def main_menu(): elif choice == '6': redraw() show_credits() + elif choice == '7': + subprocess.call(["links", os.path.join(SOURCE, "..", "README.html")]) + redraw() elif choice in QUITS: return stop() else: