Add update script

This commit is contained in:
Andrew Scott 2024-02-19 21:07:46 -05:00
parent 6d13726aba
commit 01d90c0f40
Signed by: a
GPG key ID: 7CD5A5977E4931C1

View file

@ -0,0 +1,30 @@
#!/bin/sh
alias paru='paru --skipreview'
alias zigup='zigup --install-dir "${HOME}/.local/share/zigup" --path-link "${HOME}/.local/bin/zig"'
updates=$(checkupdates)
aur_updates=$(paru -Qua)
if [ "$updates" = "" ] && [ "$aur_updates" = "" ]; then
echo "System is already up to date."
exit 0
fi
river_has_update=$(echo "$aur_updates" | grep -c 'river-git')
zls_has_update=$(echo "$aur_updates" | grep -c 'zls-git')
if [ "$river_has_update" -ne 0 ] && [ "$zls_has_update" -ne 0 ]; then
zigup master
paru -Syu --exclude river-git
zigup 0.11.0
paru -S river-git
zigup master
elif [ "$river_has_update" -ne 0 ]; then
zigup 0.11.0
paru -Syu
zigup master
else
zigup master
paru -Syu
fi