From a477e1713f783a2a1a18b7ca247d0e78bd3bb337 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 30 Mar 2021 10:26:42 -0500 Subject: Use intense white for spinner and download percentage status. --- functions.sh | 4 ++-- 1 file 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 -- cgit v1.2.3-54-g00ecf