From 39044cddeeba5ad91402f8abfb2a286e48a4f50d Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sat, 9 Sep 2023 23:09:21 -0500 Subject: Move files for config role This movement is needed to maintain the role structure --- src/config/polybar/scripts/updates.sh | 45 ----------------------------------- 1 file changed, 45 deletions(-) delete mode 100755 src/config/polybar/scripts/updates.sh (limited to 'src/config/polybar/scripts/updates.sh') diff --git a/src/config/polybar/scripts/updates.sh b/src/config/polybar/scripts/updates.sh deleted file mode 100755 index 70edf26..0000000 --- a/src/config/polybar/scripts/updates.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env bash - -NOTIFY_ICON=/usr/share/icons/Papirus/32x32/apps/system-software-update.svg - -get_total_updates() { UPDATES=$(checkupdates 2>/dev/null | wc -l); } - -while true; do - get_total_updates - - # notify user of updates - if hash notify-send &>/dev/null; then - if (( UPDATES > 50 )); then - notify-send -u critical -i $NOTIFY_ICON \ - "You really need to update!!" "$UPDATES New packages" - elif (( UPDATES > 25 )); then - notify-send -u normal -i $NOTIFY_ICON \ - "You should update soon" "$UPDATES New packages" - elif (( UPDATES > 2 )); then - notify-send -u low -i $NOTIFY_ICON \ - "$UPDATES New packages" - fi - fi - - # when there are updates available - # every 10 seconds another check for updates is done - while (( UPDATES > 0 )); do - if (( UPDATES == 1 )); then - echo "$UPDATES" - elif (( UPDATES > 1 )); then - echo "$UPDATES" - else - echo "None" - fi - sleep 10 - get_total_updates - done - - # when no updates are available, use a longer loop, this saves on CPU - # and network uptime, only checking once every 30 min for new updates - while (( UPDATES == 0 )); do - echo "None" - sleep 1800 - get_total_updates - done -done -- cgit