very limited support

This commit is contained in:
JaKooLit 2025-06-22 00:56:58 +09:00
parent 949a18a7d5
commit d6ff910df5
2 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,8 @@
## CHANGELOGS ## CHANGELOGS
## 21 June 2025
- Added a warning message that support is now very limited
## 08 June 2025 ## 08 June 2025
- updated SDDM theme. - updated SDDM theme.

View File

@ -19,6 +19,23 @@ BLUE="$(tput setaf 4)"
SKY_BLUE="$(tput setaf 6)" SKY_BLUE="$(tput setaf 6)"
RESET="$(tput sgr0)" 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 # Create Directory for Install Logs
if [ ! -d Install-Logs ]; then if [ ! -d Install-Logs ]; then