Merge pull request #180 from brockar/hyprland-qtutils

add hyprland-qtutils to install as a new dependency in Hyprland 0.46+  removes error msg on startup
This commit is contained in:
Donald Williams
2024-12-21 16:32:01 -05:00
committed by GitHub

View File

@@ -10,6 +10,7 @@ hypr=(
hyprlock
hyprland
pyprland
hyprland-qtutils
)
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
@@ -39,7 +40,10 @@ fi
printf "${NOTE} Installing Hyprland .......\n"
for HYPR in "${hypr[@]}"; do
install_package "$HYPR" 2>&1 | tee -a "$LOG"
[ $? -ne 0 ] && { echo -e "\e[1A\e[K${ERROR} - $HYPR Package installation failed, Please check the installation logs"; exit 1; }
[ $? -ne 0 ] && {
echo -e "\e[1A\e[K${ERROR} - $HYPR Package installation failed, Please check the installation logs"
exit 1
}
done
clear