This commit is contained in:
Stephan Raabe 2024-03-20 12:59:44 +01:00
parent 2b44d0d20d
commit 60515b8486
2 changed files with 9 additions and 1 deletions

View File

@ -3,8 +3,9 @@
# ------------------------------------------------------
echo -e "${GREEN}"
figlet "Done"
figlet "Reboot"
echo -e "${NONE}"
echo "A reboot of your system is recommended."
if gum confirm "Do you want to reboot your system now?" ;then
echo ":: Rebooting now ..."
sleep 3

View File

@ -1,5 +1,12 @@
#!/bin/bash
# Remove Rofi Calc
if [[ $(_isInstalledPacman "rofi-calc") == 0 ]]; then
sudo pacman --noconfirm -Rns rofi-calc
echo ":: rofi-calc removed"
echo
fi
# Remove Rofi
if [[ $(_isInstalledPacman "rofi") == 0 ]]; then
sudo pacman --noconfirm -Rns rofi