diff --git a/CHANGELOGS.md b/CHANGELOGS.md index fbd8139..407e3ca 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## CHANGELOGS +## 21 June 2025 +- Added a warning message that support is now very limited + ## 08 June 2025 - updated SDDM theme. diff --git a/install.sh b/install.sh index 9b46c76..9cdcec3 100755 --- a/install.sh +++ b/install.sh @@ -19,6 +19,23 @@ BLUE="$(tput setaf 4)" SKY_BLUE="$(tput setaf 6)" RESET="$(tput sgr0)" +# Display warning message +echo -e "${WARNING}NOTE:${RESET} Hyprland on Repo is extremely outdated and will not be supported anymore." +echo -e "Use this at your own risk." +echo -e "${WARNING}Any issues will not be dealt with${RESET}" +echo + +# Prompt user to continue or exit +read -rp "Do you want to continue with the installation? [y/N]: " confirm +case "$confirm" in + [yY][eE][sS]|[yY]) + echo -e "${OK} Continuing with installation..." + ;; + *) + echo -e "${NOTE} You chose not to continue. Exiting..." + exit 1 + ;; +esac # Create Directory for Install Logs if [ ! -d Install-Logs ]; then