From a20a9937d49eb2dfcbcda569756d449c78441507 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 10 Mar 2021 10:51:06 +0000 Subject: [PATCH 1/2] Pause after initial announce --- notifications_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/notifications_client.py b/notifications_client.py index 381272b89..2b1b05c4e 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -152,6 +152,8 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str, _sayCommand(sayStr, screenreader, systemLanguage, espeak) + keyPress = _waitForKeypress(2, debug) + originalScreenReader = screenreader domainFull = getFullDomain(domain, port) actor = httpPrefix + '://' + domainFull + '/users/' + nickname From b2e974ffcefaa3862f56b033cc5d34013cd31b5b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 10 Mar 2021 10:52:45 +0000 Subject: [PATCH 2/2] Pause after quit --- notifications_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/notifications_client.py b/notifications_client.py index 2b1b05c4e..c70e7a532 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -306,6 +306,7 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str, sayStr = 'Quit' _sayCommand(sayStr, screenreader, systemLanguage, espeak) + keyPress = _waitForKeypress(3, debug) break elif keyPress == 'sounds on' or keyPress == 'sound': sayStr = 'Notification sounds on'