diff --git a/Bash Scripts/void-updater.sh b/Bash Scripts/void-updater.sh new file mode 100755 index 0000000..1140f02 --- /dev/null +++ b/Bash Scripts/void-updater.sh @@ -0,0 +1,16 @@ +#!/bin/bash +nohup xbps-install -S +n=`xbps-install -Snu | wc -l` + +while true;do + + if [ $n -gt 0 ];then + + zenity --info --title="Update Notifier - (${n})" --text="There are currently ${n} system updates available!" + echo "There are currently "${n}" updates available!" + + fi + + sleep 60m + +done