diff options
-rw-r--r-- | functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.sh b/functions.sh index 4b1f988..cab97b5 100644 --- a/functions.sh +++ b/functions.sh @@ -4,7 +4,7 @@ download() { tput civis local url=$1 - echo -n " " + printf "%b" "${IWHT} " wget -nc -q --show-progress --progress=dot "$url" 2>&1 | grep --line-buffered "%" | \ sed -u -e "s,\.,,g" | awk '{printf("\b\b\b\b%4s", $2)}' local retval="${PIPESTATUS[0]}" @@ -92,7 +92,7 @@ function spinner() { tput civis # cursor invisible while kill -0 $pid 2>/dev/null; do local i=$(((i + $charwidth) % ${#spin})) - printf "%s" "${spin:$i:$charwidth}" + printf "%b" "${IWHT}${spin:$i:$charwidth}${RST}" cursorBack 1 sleep .1 |