add hyprland-qtutils to install

now hyprland request this on a popup, so i added this to fix that error
This commit is contained in:
brockar
2024-12-21 17:32:04 -03:00
parent 080c210d60
commit 3f2c9ac655

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