[Fix] Hyprland install started b4 whiptail

On branch hl-521
 Your branch is up to date with 'origin/hl-521'.

 Changes to be committed:
	modified:   install.sh
This commit is contained in:
Don Williams 2025-11-13 18:16:57 -05:00
parent 75c0d1a80b
commit f7c6e80d16

View File

@ -299,9 +299,6 @@ execute_script() {
fi fi
} }
# Immediately install the Debian Hyprland stack; source builds remain available via individual scripts if needed
install_debian_hyprland_stack
# Load centralized Hyprland stack tags if present and export for child scripts # Load centralized Hyprland stack tags if present and export for child scripts
if [ -f "./hypr-tags.env" ]; then if [ -f "./hypr-tags.env" ]; then
# shellcheck disable=SC1091 # shellcheck disable=SC1091
@ -514,6 +511,9 @@ echo "${INFO} Installing ${SKY_BLUE}necessary fonts...${RESET}" | tee -a "$LOG"
sleep 1 sleep 1
execute_script "fonts.sh" execute_script "fonts.sh"
# Install core Debian Hyprland stack (0.51.1+ds-1 and ecosystem) before running Hyprland-specific scripts
install_debian_hyprland_stack
# Optional: refresh tags before building the Hyprland stack # Optional: refresh tags before building the Hyprland stack
# Set FETCH_LATEST=1 to opt-in (default is no-refresh to honor pinned tags) # Set FETCH_LATEST=1 to opt-in (default is no-refresh to honor pinned tags)
if [ "${FETCH_LATEST:-0}" = "1" ] && [ -f ./refresh-hypr-tags.sh ]; then if [ "${FETCH_LATEST:-0}" = "1" ] && [ -f ./refresh-hypr-tags.sh ]; then