linuxShortcuts/Pacman/updateRepositories.sh

27 lines
552 B
Bash
Raw Normal View History

2018-08-09 02:56:36 +00:00
BOLD='\e[91m'
NC='\e[39m'
function bold() {
echo -e "\n\n${BOLD}$1${NC}"
2018-08-09 02:56:36 +00:00
}
function s() {
sudo $*
}
# From now on, exit when any command fails
set -e
s -v
bold "Updating..."
2022-10-07 11:40:50 +00:00
nice --adjustment=19 ionice -c 3 yay -Syu --sudoloop --answerclean none --answerdiff all --answerupgrade all --noremovemake --norebuild --noredownload --nobatchinstall --cleanafter
2018-08-09 17:45:26 +00:00
2018-08-09 02:56:36 +00:00
bold "Cleaning stuff..."
s -v
yay -Sc --noconfirm 2>/dev/null
s -v
yes | (sudo -S pacman -Rns $(pacman -Qtdq) --color always 2>/dev/null)
2018-08-09 17:45:26 +00:00
s -k
notify-send "Update script has finished!"