mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
commit
7d5398e2c4
@ -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.
|
||||||
|
|
||||||
|
|||||||
17
install.sh
17
install.sh
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user