Update build.func

Spinner update
This commit is contained in:
tteckster 2024-04-21 09:14:33 -04:00 committed by GitHub
parent bdb7126a38
commit dafa19a608
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@ color() {
CM="${GN}✓${CL}" CM="${GN}✓${CL}"
CROSS="${RD}✗${CL}" CROSS="${RD}✗${CL}"
BFR="\\r\\033[K" BFR="\\r\\033[K"
HOLD="-" HOLD=" "
} }
# This function enables error handling in the script by setting options and defining a trap for the ERR signal. # This function enables error handling in the script by setting options and defining a trap for the ERR signal.
@ -38,13 +38,13 @@ error_handler() {
# This function displays a spinner. # This function displays a spinner.
spinner() { spinner() {
printf "\e[?25l" local chars="/-\|"
spinner="/-\\|/-\\|" local spin_i=0
spin_i=0 printf "\e[?25l"
while true; do while true; do
printf "\b%s" "${spinner:spin_i++%${#spinner}:1}" printf "\r \e[36m%s\e[0m" "${chars:spin_i++%${#chars}:1}"
sleep 0.1 sleep 0.1
done done
} }
# This function displays an informational message with a yellow color. # This function displays an informational message with a yellow color.