From: frrobert2 Date: Sun, 9 May 2021 23:46:24 +0000 (-0400) Subject: update X-Git-Url: https://software.frrobert.com/stationnotifier/commitdiff_plain/40101848b7b3c87084a2c13af06a7efea844e87d update --- 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