mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 02:01:08 +00:00
32 lines
541 B
Bash
Executable File
32 lines
541 B
Bash
Executable File
BOLD='\e[91m'
|
|
NC='\e[39m'
|
|
|
|
function bold() {
|
|
echo -e "${BOLD}$1${NC}"
|
|
}
|
|
|
|
function s() {
|
|
#echo -e "$sudoPass\n" | sudo --stdin $1 || exit 1
|
|
sudo $1
|
|
echo
|
|
}
|
|
|
|
|
|
# bold "Pacman-mirrors -c"
|
|
# s "pacman-mirrors -c Brazil"
|
|
# s "reflector -l 30 -f 10 --save /etc/pacman.d/mirrorlist"
|
|
|
|
s -v
|
|
echo
|
|
bold "Updating..."
|
|
yay -Syu --sudoloop --noconfirm --nobatchinstall --cleanafter
|
|
|
|
bold "Cleaning stuff..."
|
|
s -v
|
|
yes | (sudo -S pacman -Rns $(pacman -Qtdq) --color always)
|
|
s -v
|
|
yay -Sc --noconfirm
|
|
|
|
s -k
|
|
notify-send "Update script has finished!"
|