diff --git a/notifications_client.py b/notifications_client.py index 3b6198e6a..d225a7c13 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -576,6 +576,13 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str, """Runs the notifications and screen reader client, which announces new inbox items """ + bannerFilename = 'theme/default/banner.txt' + if os.path.isfile(bannerFilename): + with open(bannerFilename, 'r') as bannerFile: + banner = bannerFile.read() + if banner: + print(banner + '\n') + espeak = None if screenreader: if screenreader == 'espeak':