From a56aace2a4b4ae0878d66f707f3be37c4f6b2487 Mon Sep 17 00:00:00 2001 From: koksnuss Date: Tue, 26 Feb 2019 18:41:27 +0100 Subject: [PATCH] - shorten audio and mic mute text from "off" to "x" --- modules/audio.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/audio.sh b/modules/audio.sh index 38ecb8f..1cfda5a 100644 --- a/modules/audio.sh +++ b/modules/audio.sh @@ -9,8 +9,8 @@ if [[ $(amixer get $DEV) =~ \[([0-9]+)\%\][[:space:]]\[(on|off)\] ]]; then LONG_TEXT="${LOAD}%" SHORT_TEXT="${LOAD}" else - LONG_TEXT="${LOAD}% off" - SHORT_TEXT="off" + LONG_TEXT="${LOAD}% x" + SHORT_TEXT="x" LOAD=false fi else