From a2ee342adbaa56934acf8fe97c7329e98f8ef5d0 Mon Sep 17 00:00:00 2001 From: Juraj Bednar Date: Sat, 19 Feb 2022 00:03:51 +0100 Subject: [PATCH] add emojis for clear view of what is happening --- signal-monitoring.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/signal-monitoring.sh b/signal-monitoring.sh index 59d8f2f..9aeee5d 100755 --- a/signal-monitoring.sh +++ b/signal-monitoring.sh @@ -36,7 +36,7 @@ function check_passed { if [ -f ${check_filename} ] then rm -f $check_filename - notify "${description}" + notify "✅ ${description}" fi } @@ -52,7 +52,7 @@ function check_failed { if [ -z "$FOUND" ] then # we don't have recent notification (60 minutes) echo "${description}" > "${check_filename}" - notify "${description}" + notify "❌ ${description}" fi }