aboutsummaryrefslogtreecommitdiffstats
path: root/functions.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-30 10:26:42 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-30 10:26:42 -0500
commita477e1713f783a2a1a18b7ca247d0e78bd3bb337 (patch)
treedd7d67479914e961c454fa6e425b5d726311e522 /functions.sh
parent41923fdbc608b40fad3ba1822d2e4b262615ea04 (diff)
Use intense white for spinner and download percentage status.
Diffstat (limited to 'functions.sh')
-rw-r--r--functions.sh4
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