Added gum
This commit is contained in:
parent
49093fef5d
commit
3ebe8dc891
@ -38,38 +38,32 @@ _isInstalledYay() {
|
||||
# Confirm Start
|
||||
# ------------------------------------------------------
|
||||
|
||||
while true; do
|
||||
read -p "DO YOU WANT TO START THE UPDATE NOW? (Yy/Nn): " yn
|
||||
case $yn in
|
||||
[Yy]* )
|
||||
echo ""
|
||||
break;;
|
||||
[Nn]* )
|
||||
if gum confirm "DO YOU WANT TO START THE UPDATE NOW?" ;then
|
||||
echo "Update started."
|
||||
elif [ $? -eq 130 ]; then
|
||||
exit 130
|
||||
else
|
||||
echo "Update canceled."
|
||||
exit;
|
||||
break;;
|
||||
* ) echo "Please answer yes or no.";;
|
||||
esac
|
||||
done
|
||||
|
||||
if [[ $(_isInstalledYay "Timeshift") == 1 ]];
|
||||
then
|
||||
while true; do
|
||||
read -p "DO YOU WANT TO CREATE A SNAPSHOT? (Yy/Nn): " yn
|
||||
case $yn in
|
||||
[Yy]* )
|
||||
fi
|
||||
echo ""
|
||||
read -p "Enter a comment for the snapshot: " c
|
||||
|
||||
if [[ $(_isInstalledYay "Timeshift") == 1 ]] ;then
|
||||
if gum confirm "DO YOU WANT TO CREATE A SNAPSHOT?" ;then
|
||||
echo ""
|
||||
c=$(gum input --placeholder "Enter a comment for the snapshot...")
|
||||
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
|
||||
elif [ $? -eq 130 ]; then
|
||||
echo "Snapshot canceled."
|
||||
exit 130
|
||||
else
|
||||
echo "Snapshot canceled."
|
||||
fi
|
||||
echo ""
|
||||
fi
|
||||
|
||||
echo "-----------------------------------------------------"
|
||||
|
@ -9,7 +9,7 @@
|
||||
# by Stephan Raabe (2023)
|
||||
# -----------------------------------------------------
|
||||
|
||||
read -p "Enter a comment for the snapshot: " c
|
||||
c=$(gum input --placeholder "Enter a comment for the snapshot...")
|
||||
sudo timeshift --create --comments "$c"
|
||||
sudo timeshift --list
|
||||
sudo grub-mkconfig -o /boot/grub/grub.cfg
|
||||
|
Loading…
Reference in New Issue
Block a user