some tweaking on install-scripts except the compiling part. It will not show progress for much cleaner work.

This commit is contained in:
JaKooLit
2025-02-02 22:54:58 +09:00
parent dac6c373c9
commit 6abc879468
25 changed files with 244 additions and 249 deletions

View File

@@ -38,10 +38,10 @@ if pacman -Qs hyprland > /dev/null; then
fi
# Install additional Nvidia packages
printf "${YELLOW} Installing Nvidia Packages and Linux headers...\n"
printf "${YELLOW} Installing ${BLUE}Nvidia Packages and Linux headers${RESET}...\n"
for krnl in $(cat /usr/lib/modules/*/pkgbase); do
for NVIDIA in "${krnl}-headers" "${nvidia_pkg[@]}"; do
install_package "$NVIDIA" 2>&1 | tee -a "$LOG"
install_package "$NVIDIA" "$LOG"
done
done
@@ -118,6 +118,7 @@ if [ -f /boot/loader/loader.conf ]; then
fi
fi
printf "\n%.0s" {1..2}
# Blacklist nouveau
if [[ -z $blacklist_nouveau ]]; then
@@ -144,4 +145,4 @@ else
printf "${NOTE} Skipping nouveau blacklisting..." 2>&1 | tee -a "$LOG"
fi
clear
printf "\n%.0s" {1..2}