1
0
Fork 0
mirror of synced 2024-05-28 21:11:10 -04:00
garuda-common-settings/usr/bin/update

28 lines
1,008 B
Plaintext
Raw Normal View History

#!/bin/bash
# Check for AUR helper
if [ -x /usr/bin/paru ]; then
upd_cmd="paru -Su"
echo "Detected Paru, using it to update the system.."
elif [ -x /usr/bin/yay ]; then
upd_cmd="yay -Su"
echo "Detected Yay, using it to update the system.."
else upd_cmd="sudo pacman -Su" && echo "No AUR helper installed, using Pacman to update.."
fi
# Refresh mirrorlist
2021-06-27 04:36:44 -04:00
echo "Refreshing mirrorlists.."
sudo reflector --latest 5 --age 2 --fastest 5 --protocol https --sort rate --save /etc/pacman.d/mirrorlist && cat /etc/pacman.d/mirrorlist
2021-06-27 04:36:44 -04:00
echo ""
# Check for keyring update & update as needed
2021-06-27 04:36:44 -04:00
echo "Checking for keyring update, then update as needed.."
if pacman -Qq blackarch-keyring; then
sudo pacman -Sy archlinux-keyring blackarch-keyring chaotic-keyring --needed && $upd_cmd
else sudo pacman -Sy archlinux-keyring chaotic-keyring --needed && $upd_cmd
fi
2021-06-27 04:36:44 -04:00
echo ""
# Update mlocate index
2021-07-02 11:06:52 -04:00
pacman -Qq mlocate > /dev/null && echo "Updating mlocate index.." && sudo updatedb
2021-06-27 04:36:44 -04:00
echo "System updated!"