From 60515b848662dd9aed33d38016622b6540200946 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Wed, 20 Mar 2024 12:59:44 +0100 Subject: [PATCH] Updates --- .install/reboot.sh | 3 ++- .install/remove.sh | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.install/reboot.sh b/.install/reboot.sh index 9e1f6b3..7f59583 100644 --- a/.install/reboot.sh +++ b/.install/reboot.sh @@ -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 diff --git a/.install/remove.sh b/.install/remove.sh index d4d85c2..925dbf7 100755 --- a/.install/remove.sh +++ b/.install/remove.sh @@ -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