This commit is contained in:
CanbiZ
2025-05-07 15:55:43 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -156,7 +156,7 @@ start_spinner() {
{
while [[ "$SPINNER_ACTIVE" -eq 1 ]]; do
printf "\r\e[2K%s %b" "${frames[spin_i]}" "${YW}${SPINNER_MSG}${CL}" >&2
printf "\r\e[2K%s %b" "${TAB}${frames[spin_i]}${TAB}" "${YW}${SPINNER_MSG}${CL}" >&2
spin_i=$(((spin_i + 1) % ${#frames[@]}))
sleep "$interval"
done