From 40101848b7b3c87084a2c13af06a7efea844e87d Mon Sep 17 00:00:00 2001 From: frrobert2 Date: Sun, 9 May 2021 19:46:24 -0400 Subject: [PATCH] update --- notificatorossl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/notificatorossl b/notificatorossl index 5ade715..e702b69 100755 --- a/notificatorossl +++ b/notificatorossl @@ -2,8 +2,8 @@ # notifitcatorossl is a fork of https://github.com/ThatsRedacted/StationNotifier # This program uses openssl rather than curl to connect to a gemini site` -key='' -cert='' +key='/home/frrobert/.config/amfora/7debbb3fae40dbe77746aa465300febaec5abb778faa8a550f8e5924f0977983.key' +cert='/home/frrobert/.config/amfora/7debbb3fae40dbe77746aa465300febaec5abb778faa8a550f8e5924f0977983.crt' connectto=30 howoften= @@ -35,8 +35,9 @@ do notifications=${my_array[2]} echo "" > $tmpfile if [[ $notifications -gt $lasttime ]]; then + new=$(expr $notifications - $lasttime) echo -en "\007" - echo "You have new notifications!" + echo "You have $notifications and $new new notifications!" read -p "Press enter to continue, or either type amfora or lagrange to go to notifications" answer case $answer in amfora) @@ -55,6 +56,6 @@ echo "waiting for new notifications" lasttime=$notifications unset my_array fi - sleep 60 + sleep 600 done -- 1.8.3.1