aboutsummaryrefslogblamecommitdiff
path: root/.config/yambar/scripts/chimera-updates.sh
blob: 2a948ae9ad101de5eb087c251b696e38c25cf7e9 (plain) (tree)
1
2
3
4
5
6
7
8







                        


                                                 














                            
                                                                                         










                             
#!/bin/bash

function update-yambar {
echo "updates|string|"
echo ""

while true; do

doas apk update
updates="$(apk -u list | awk '{ print $1 }')"
number="$(apk -u list | wc -l | awk '{$1=$1};1')"

if [ "$number" -gt 0 ]; then
    text=" $number"
else
    text=""
fi

echo "updates|string|$text"
echo ""
sleep 30m

done
}

function update {
	foot bash -c "doas apk upgrade"; sh -c "~/.config/yambar/scripts/yambar-start.sh"
}

case $1 in
	update)
		update
		;;
	*)
		update-yambar
		;;
esac
exit 0