This commit is contained in:
Stephan Raabe 2024-02-27 11:16:40 +01:00
parent c6ee368c6f
commit 01c90fa16d
2 changed files with 65 additions and 9 deletions

View File

@ -21,11 +21,22 @@ _isInstalledYay() {
return; #false return; #false
} }
if [[ $(_isInstalledYay "timeshift") == "0" ]] ;then timeshift_installed=$(_isInstalledYay "timeshift")
grubbtrfs_installed=$(_isInstalledYay "grub-btrfs")
if [[ $timeshift_installed == "0" ]] ;then
echo ":: Timeshift is already installed" echo ":: Timeshift is already installed"
sleep 3
else else
if gum confirm "DO YOU WANT TO INSTALL Timeshift now?" ;then if gum confirm "DO YOU WANT TO INSTALL Timeshift now?" ;then
yay -S timeshift yay -S timeshift
fi fi
fi fi
if [[ -d /boot/grub ]] && [[ $grubbtrfs_installed == "0" ]] ;then
echo ":: grub-btrfs is already installed"
else
echo ":: grub-btrfs is required to select a snapshot on grub bootloader."
if gum confirm "DO YOU WANT TO INSTALL grub-btrfs now?" ;then
yay -S grub-btrfs
fi
fi
sleep 3

View File

@ -6,11 +6,56 @@
# |____/|_| |_|\__,_| .__/|___/_| |_|\___/ \__| # |____/|_| |_|\__,_| .__/|___/_| |_|\___/ \__|
# |_| # |_|
# #
# by Stephan Raabe (2023) # by Stephan Raabe (2024)
# ----------------------------------------------------- # -----------------------------------------------------
c=$(gum input --placeholder "Enter a comment for the snapshot...") sleep 1
sudo timeshift --create --comments "$c" clear
sudo timeshift --list figlet "Snapshot"
sudo grub-mkconfig -o /boot/grub/grub.cfg
echo "DONE. Snapshot $c created!" _isInstalledYay() {
package="$1";
check="$(yay -Qs --color always "${package}" | grep "local" | grep "${package} ")";
if [ -n "${check}" ] ; then
echo 0; #'0' means 'true' in Bash
return; #true
fi;
echo 1; #'1' means 'false' in Bash
return; #false
}
timeshift_installed=$(_isInstalledYay "timeshift")
grubbtrfs_installed=$(_isInstalledYay "grub-btrfs")
if [[ $timeshift_installed == "0" ]] ;then
c=$(gum input --placeholder "Enter a comment for the snapshot...")
sudo timeshift --create --comments "$c"
sudo timeshift --list
if [[ -d /boot/grub ]] ;then
if [[ -d /boot/grub ]] && [[ $grubbtrfs_installed == "1" ]] ;then
if gum confirm "DO YOU WANT TO INSTALL grub-btrfs now?" ;then
yay -S grub-btrfs
else
exit
fi
fi
sudo grub-mkconfig -o /boot/grub/grub.cfg
fi
echo "DONE. Snapshot $c created!"
else
echo "ERROR: Timeshift is not installed."
if gum confirm "DO YOU WANT TO INSTALL Timeshift now?" ;then
yay -S timeshift
echo
echo ":: Timeshift has been installed. Please restart this script."
if [[ -d /boot/grub ]] && [[ $grubbtrfs_installed == "1" ]] ;then
echo ":: grub-btrfs is required to select a snapshot on grub bootloader."
if gum confirm "DO YOU WANT TO INSTALL grub-btrfs now?" ;then
yay -S grub-btrfs
else
exit
fi
fi
fi
fi