edit/adjusted some scripts

This commit is contained in:
JaKooLit
2023-12-05 13:29:43 +09:00
parent 52b3a1e49d
commit 7f7a9e7d3d
4 changed files with 12 additions and 9 deletions

View File

@@ -202,20 +202,19 @@ clear
printf "\n${OK} Yey! Installation Completed.\n"
printf "\n"
printf "\n${NOTE} NOTICE TO NVIDIA OWNERS! IT's a MUST for your to reboot your system\n"
sleep 2
printf "\n${NOTE} You can start Hyprland by typing Hyprland (IF SDDM is not installed) (note the capital H!).\n"
printf "\n"
printf "\n${NOTE} It is highly recommended to reboot your system.\n\n"
read -n1 -rep "${CAT} Would you like to reboot now? (y,n)" HYP
if [[ $HYP =~ ^[Yy]$ ]]; then
read -rp "${CAT} Would you like to reboot now? (y/n): " HYP
if [[ "$HYP" =~ ^[Yy]$ ]]; then
if [[ "$nvidia" == "Y" ]]; then
echo "${NOTE} NVIDIA GPU detected. Rebooting the system..."
systemctl reboot
else
systemctl reboot
fi
fi