From f5e3ed99d2a2ada728a0f2eb57369c48efac3bc1 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 6 Feb 2025 21:06:14 +0900 Subject: [PATCH] minor update --- install.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/install.sh b/install.sh index e9b9036..9d26110 100755 --- a/install.sh +++ b/install.sh @@ -305,7 +305,6 @@ fi if [ "$sddm" == "Y" ]; then execute_script "sddm.sh" fi - if [ "$sddm_theme" == "Y" ]; then execute_script "sddm_theme.sh" fi @@ -317,7 +316,6 @@ fi if [ "$zsh" == "Y" ]; then execute_script "zsh.sh" fi - if [ "$pokemon_choice" == "Y" ]; then execute_script "zsh_pokemon.sh" fi @@ -360,15 +358,13 @@ if pacman -Q hyprland &> /dev/null || pacman -Q hyprland-git &> /dev/null; then printf "\n${NOTE} You can start Hyprland by typing ${SKY_BLUE}Hyprland${RESET} (IF SDDM is not installed) (note the capital H!).\n" printf "\n${NOTE} However, it is ${YELLOW}highly recommended to reboot${RESET} your system.\n\n" - # Prompt user to reboot read -rp "${CAT} Would you like to reboot now? (y/n): " HYP - # Normalize user input to lowercase HYP=$(echo "$HYP" | tr '[:upper:]' '[:lower:]') if [[ "$HYP" == "y" || "$HYP" == "yes" ]]; then echo "${INFO} Rebooting now..." - reboot # Optionally reboot if the user agrees + systemctl reboot elif [[ "$HYP" == "n" || "$HYP" == "no" ]]; then echo "${OK} You choose NOT to reboot" printf "\n%.0s" {1..1}