This commit is contained in:
Benjy 2024-08-15 07:44:04 +01:00 committed by GitHub
parent bd8c7c5d95
commit 17ee7e1f81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,20 +25,8 @@ MLOG="install-$(date +%d-%H%M%S)_hyprland2.log"
# Installation of dependencies # Installation of dependencies
for PKG1 in "${hyprland[@]}"; do
install_package "$PKG1" 2>&1 | tee -a "$LOG"
if [ $? -ne 0 ]; then
echo -e "\e[1A\e[K${ERROR} - $PKG1 Package installation failed, Please check the installation logs"
exit 1
fi
done
# Install Hyprland # Install Hyprland
printf "${NOTE} Installing Hyprland ...\n" printf "${NOTE} Installing Hyprland ...\n"
# Check if Hyprland folder exists and remove it
# Get the OS name from the release file # Get the OS name from the release file
os_name=$(grep '^ID=' /etc/os-release | tr -d '"' | cut -d= -f2) os_name=$(grep '^ID=' /etc/os-release | tr -d '"' | cut -d= -f2)
ID_LIKE=$(grep '^ID_LIKE=' /etc/os-release | cut -d= -f2 | tr -d '"') ID_LIKE=$(grep '^ID_LIKE=' /etc/os-release | cut -d= -f2 | tr -d '"')