refactor(install): re-enable installer count down

This commit is contained in:
Price Hiller 2023-10-27 23:17:56 -05:00
parent 79df2e5bb4
commit aa08fb116d
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -166,12 +166,13 @@ main() {
exit 1 exit 1
fi fi
read -r -s -n 1 -p "Press any key to begin NixOS installation to '${disk}' for host '${host}'!" read -r -s -n 1 -p "Press any key to begin NixOS installation to '${disk}' for host '${host}'!"
# printf "\nInstalling in " printf "\n"
# for i in {3..1}; do printf "Installing in "
# printf "%s.." "${i}" for i in {3..1}; do
# sleep 1 printf "%s.." "${i}"
# done sleep 1
# printf "\n" done
printf "\n"
install "${disk}" "${encrypt_disk}" "${host}" install "${disk}" "${encrypt_disk}" "${host}"
} }