diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-30 12:58:24 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-30 12:58:24 -0500 |
commit | d5a17beb0e521b00e602184f4eb76ea5ae5fa304 (patch) | |
tree | bff6e19ca3dcd0eb6967521cac4e06a62467fa27 | |
parent | f2f4fcdc6a9e9fc376f0809c0fc895dbaebb27d7 (diff) |
Use tput for color rather than escape codes from our colors.sh.
-rw-r--r-- | functions.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.sh b/functions.sh index cab97b5..8c5bd93 100644 --- a/functions.sh +++ b/functions.sh @@ -90,9 +90,10 @@ function spinner() { local i=0 tput civis # cursor invisible + tput bold setaf 7 while kill -0 $pid 2>/dev/null; do local i=$(((i + $charwidth) % ${#spin})) - printf "%b" "${IWHT}${spin:$i:$charwidth}${RST}" + printf "%b" "${spin:$i:$charwidth}" cursorBack 1 sleep .1 |