diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-30 10:26:42 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-30 10:27:36 -0500 |
commit | bb69bafce6afca3fb48cbf65dfad12ec950ca3cb (patch) | |
tree | 9a4b35cafeffae113416c92b7b59ca706cff8cf6 | |
parent | 8de4566c3f959c0d9d51c79ea9b4205d46718060 (diff) |
Use intense white for spinner and download percentage status.
-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 |