pw_watch: Update banner and add keyboard help
Change-Id: Ibc9dbe58887cbec3b144b956dd2c311da66d2507
diff --git a/pw_watch/py/pw_watch/watch.py b/pw_watch/py/pw_watch/watch.py
index 8103dd0..0613aa8 100755
--- a/pw_watch/py/pw_watch/watch.py
+++ b/pw_watch/py/pw_watch/watch.py
@@ -40,12 +40,11 @@
_LOG = logging.getLogger(__name__)
_BUILD_MESSAGE = """
- ██████╗ ██╗ ██╗██╗██╗ ██████╗
- ██╔══██╗██║ ██║██║██║ ██╔══██╗
- ██████╔╝██║ ██║██║██║ ██║ ██║
- ██╔══██╗██║ ██║██║██║ ██║ ██║
- ██████╔╝╚██████╔╝██║███████╗██████╔╝
- ╚═════╝ ╚═════╝ ╚═╝╚══════╝╚═════╝
+ ▒█████▄ █▓ ▄███▒ ▒█ ▒█ ░▓████▒ ░▓████▒ ▒▓████▄
+ ▒█░ █░ ░█▒ ██▒ ▀█▒ ▒█░ █ ▒█ ▒█ ▀ ▒█ ▀ ▒█ ▀█▌
+ ▒█▄▄▄█░ ░█▒ █▓░ ▄▄░ ▒█░ █ ▒█ ▒███ ▒███ ░█ █▌
+ ▒█▀ ░█░ ▓█ █▓ ░█░ █ ▒█ ▒█ ▄ ▒█ ▄ ░█ ▄█▌
+ ▒█ ░█░ ░▓███▀ ▒█▓▀▓█░ ░▓████▒ ░▓████▒ ▒▓████▀
"""
_PASS_MESSAGE = """
@@ -212,6 +211,10 @@
# Clear the screen and show a banner indicating the build is starting.
print('\033c', end='') # TODO(pwbug/38): Not Windows compatible.
print(_COLOR.magenta(_BUILD_MESSAGE))
+ print(
+ _COLOR.green(
+ ' Watching for changes. Ctrl-C to exit; enter to rebuild'))
+ print()
_LOG.info('Change detected: %s', self.matching_path)
self.builds_succeeded = []