Hyprland-dotfiles/scripts/installupdates.sh

63 lines
1.8 KiB
Bash
Raw Normal View History

2023-09-10 09:07:55 -04:00
#!/bin/bash
# ___ _ _ _ _ _ _ _
# |_ _|_ __ ___| |_ __ _| | | | | | |_ __ __| | __ _| |_ ___ ___
# | || '_ \/ __| __/ _` | | | | | | | '_ \ / _` |/ _` | __/ _ \/ __|
# | || | | \__ \ || (_| | | | | |_| | |_) | (_| | (_| | || __/\__ \
# |___|_| |_|___/\__\__,_|_|_| \___/| .__/ \__,_|\__,_|\__\___||___/
# |_|
# by Stephan Raabe (2023)
# -----------------------------------------------------
# Required: yay trizen timeshift btrfs-grub
# -----------------------------------------------------
sleep 1
2023-09-10 09:07:55 -04:00
source ~/dotfiles/scripts/library.sh
clear
# ------------------------------------------------------
# Confirm Start
# ------------------------------------------------------
while true; do
read -p "DO YOU WANT TO START THE UPDATE NOW? (Yy/Nn): " yn
case $yn in
[Yy]* )
2023-10-02 08:50:28 -04:00
echo ""
2023-09-10 09:07:55 -04:00
break;;
[Nn]* )
exit;
break;;
* ) echo "Please answer yes or no.";;
esac
done
if [[ $(_isInstalledYay "Timeshift") == 1 ]];
then
2023-10-02 08:50:28 -04:00
while true; do
read -p "DO YOU WANT TO CREATE A SNAPSHOT? (Yy/Nn): " yn
case $yn in
[Yy]* )
echo ""
read -p "Enter a comment for the snapshot: " c
sudo timeshift --create --comments "$c"
sudo timeshift --list
sudo grub-mkconfig -o /boot/grub/grub.cfg
echo "DONE. Snapshot $c created!"
echo ""
break;;
[Nn]* )
break;;
* ) echo "Please answer yes or no.";;
esac
done
2023-09-10 09:07:55 -04:00
fi
echo "-----------------------------------------------------"
echo "Start update"
echo "-----------------------------------------------------"
echo ""
yay
2023-09-18 15:03:03 -04:00
2023-10-02 08:50:28 -04:00
notify-send "Update complete"