2021-06-26 14:00:10 -04:00
|
|
|
#!/bin/bash
|
|
|
|
# Refresh mirrorlist
|
2021-06-27 04:36:44 -04:00
|
|
|
echo "Refreshing mirrorlists.."
|
2021-06-26 14:00:10 -04:00
|
|
|
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 ""
|
2021-06-26 14:00:10 -04:00
|
|
|
|
|
|
|
# Check for keyring update & update as needed
|
2021-06-27 04:36:44 -04:00
|
|
|
echo "Checking for keyring update, then update as needed.."
|
2021-06-26 14:16:50 -04:00
|
|
|
if pacman -Qs blackarch-keyring; then
|
2021-06-27 04:36:44 -04:00
|
|
|
sudo pacman -Sy archlinux-keyring blackarch-keyring chaotic-keyring --needed && sudo pacman -Su
|
|
|
|
else sudo pacman -Sy archlinux-keyring chaotic-keyring --needed && sudo pacman -Su
|
2021-06-26 14:16:50 -04:00
|
|
|
fi
|
2021-06-27 04:36:44 -04:00
|
|
|
echo ""
|
2021-06-26 14:00:10 -04:00
|
|
|
|
|
|
|
# Update mlocate index
|
2021-06-27 04:36:44 -04:00
|
|
|
pacman -Qs mlocate > /dev/null && echo "Updating mlocate index.." && sudo updatedb
|
|
|
|
echo "System updated!"
|