diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 99e1635..fa96359 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## CHANGELOGS +## 20 March 2025 +- adjusted hyprland installation script. This is great for those who are using -git packages + ## 11 March 2025 - Added uninstall script - forked AGS v1 into JakooLit repo. This is just incase Aylur decide to take down v1 diff --git a/install-scripts/hyprland.sh b/install-scripts/hyprland.sh index b499ddd..b816af8 100755 --- a/install-scripts/hyprland.sh +++ b/install-scripts/hyprland.sh @@ -29,7 +29,7 @@ LOG="Install-Logs/install-$(date +%d-%H%M%S)_hyprland.log" # Check if Hyprland is installed if command -v Hyprland >/dev/null 2>&1; then - printf "$NOTE - ${YELLOW} Hyprland is already installed. No action required.${RESET}\n" + printf "$NOTE - ${YELLOW} Hyprland is already installed.${RESET} No action required.\n" else printf "$INFO - Hyprland not found. ${SKY_BLUE} Installing Hyprland...${RESET}\n" for HYPRLAND in "${hypr[@]}"; do @@ -44,7 +44,7 @@ for HYPR in "${hypr_eco[@]}"; do printf "$INFO - ${YELLOW}$HYPR${RESET} not found. Installing ${YELLOW}$HYPR...${RESET}\n" install_package "$HYPR" "$LOG" else - printf "$NOTE - ${YELLOW} $HYPR is already installed. No action required.${RESET}\n" + printf "$NOTE - ${YELLOW} $HYPR is already installed.${RESET} No action required.\n" fi done