Fix progress bars
This commit is contained in:
parent
bfac607589
commit
9d20bb67cd
1 changed files with 2 additions and 2 deletions
4
neofetch
4
neofetch
|
@ -2461,8 +2461,8 @@ bar() {
|
||||||
total=$(printf %"$((progress_length - elapsed))"s)
|
total=$(printf %"$((progress_length - elapsed))"s)
|
||||||
|
|
||||||
# Set the colors and swap the spaces for $progress_char
|
# Set the colors and swap the spaces for $progress_char
|
||||||
bar="${progress_color_elapsed}${prog// /$progress_char}"
|
bar="\033[0m${progress_color_elapsed}${prog// /$progress_char}"
|
||||||
bar+="${progress_color_total}${total// /$progress_char}"
|
bar+="\033[0m${progress_color_total}${total// /$progress_char}"
|
||||||
printf "%b%s\n" "${bar}${clear}"
|
printf "%b%s\n" "${bar}${clear}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue