From e24d79272eba4c6e919e1ee5fe8c22ffa46dcb2b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 15 Apr 2026 15:59:20 -0400 Subject: [PATCH] Add message to Sound and Audio program. --- usr/local/bin/audio_manager.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/usr/local/bin/audio_manager.py b/usr/local/bin/audio_manager.py index 88a9cf4..a9fe049 100755 --- a/usr/local/bin/audio_manager.py +++ b/usr/local/bin/audio_manager.py @@ -24,9 +24,10 @@ except Exception: FEEDBACK_SOUND = "/usr/share/sounds/stormux/menu_move.wav" TEST_SOUND = "/usr/share/sounds/stormux/menu_select.wav" HELP_TEXT = ( - "Use left and right to move between controls. " - "Use up and down to change the selected control. " - "Press space to hear the current value. " + "Use left and right arrows to select a control. " + "Use up and down arrows to adjust it. " + "Press space to read the current value. " + "Press h to hear this help again. " "Press enter to confirm a pending device change or apply the selected device. " "Press escape or q to exit." ) @@ -556,7 +557,11 @@ class AudioManagerApp: except Exception: pass - self.speak("Stormux audio manager") + self.speak( + "Sound and Volume. Use left and right arrows to select, " + "up and down arrows to adjust, and space to read the current value. " + "Press h for help." + ) while True: if pending_change_expired(self.pending_change):