diff options
Diffstat (limited to 'env/.local/bin/system')
| -rwxr-xr-x | env/.local/bin/system/start-scripts/newsboat-fetch.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/env/.local/bin/system/start-scripts/newsboat-fetch.sh b/env/.local/bin/system/start-scripts/newsboat-fetch.sh index 5eefe9b..bd9146c 100755 --- a/env/.local/bin/system/start-scripts/newsboat-fetch.sh +++ b/env/.local/bin/system/start-scripts/newsboat-fetch.sh @@ -1,11 +1,17 @@ #!/bin/sh + +CACHE_FILE="/tmp/newsboat-unreads.cache" + +[ -f "$CACHE_FILE" ] || echo "0" > "$CACHE_FILE" + newsboat_loop(){ NO_PROXY=\".com,.org,.xyz,.chat,.social,.net,.co,.love\" newsboat -x reload - #newsboat -x print-unread | xargs -0 notify-send "newsboat feed" unreads=$(newsboat -x print-unread) unreadnum=$(printf -- "%s" "$unreads" | sed 's/ .*//g') + echo "${unreadnum:-0}" > "$CACHE_FILE" + if [ "$unreadnum" -gt 0 ]; then notify-send "newsboat feed" "$unreads" fi |
