36 lines
899 B
Bash
Executable File
36 lines
899 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BAR_ICON=""
|
|
ICON=/usr/share/icons/gnome/32x32/apps/system-software-update.png
|
|
|
|
total() { UPD=$(checkupdates | wc -l) ;}
|
|
|
|
while true; do
|
|
total
|
|
if hash notify-send &>/dev/null; then
|
|
if [[ $UPD -gt 50 ]]; then
|
|
notify-send -u critical -i $ICON "You really need to update!!" "$UPD New packages"
|
|
elif [[ $UPD -gt 25 ]]; then
|
|
notify-send -u normal -i $ICON "You should update soon" "$UPD New packages"
|
|
elif [[ $UPD -gt 2 ]]; then
|
|
notify-send -u low -i $ICON "$UPD New packages"
|
|
fi
|
|
fi
|
|
|
|
while [[ $UPD -gt 0 ]]; do
|
|
if [[ $UPD -eq 1 ]]; then
|
|
echo "$UPD Update"
|
|
elif [[ $UPD -gt 1 ]]; then
|
|
echo "$UPD Updates"
|
|
fi
|
|
sleep 10
|
|
total
|
|
done
|
|
|
|
while [[ $UPD -eq 0 ]]; do
|
|
echo $BAR_ICON
|
|
sleep 1800
|
|
total
|
|
done
|
|
done
|