diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 13:11:38 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 13:11:38 -0500 |
commit | 1a3df5a74b782eabd5cf4ee69e2e629ceb889ab9 (patch) | |
tree | 7c93b4ddb8b85e9b26b84d9c1e490b79616d43a5 | |
parent | 47a42fae330ba2f59f04d2ba630da49237da914e (diff) |
Cleanup spinner.sh
-rw-r--r-- | spinner.sh | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,13 +1,16 @@ +#!/bin/bash + ## spinner takes the pid of the process as the first argument and # string to display as second argument (default provided) and spins # until the process completes. spinner() { local PROC="$1" #local str="${2:-'Copyright of KatworX© Tech. Developed by Arjun Singh Kathait and Debugged by the ☆Stack Overflow Community☆'}" + local str="" local delay="0.1" tput civis # hide cursor - printf "${WHT}" - while [ -d /proc/$PROC ]; do + echo -ne "${WHT}" + while [ -d /proc/"$PROC" ]; do #-\|/ #⠁⠂⠄⡀⢀⠠⠐⠈ #▁▂▃▄▅▆▇█▇▆▅▄▃▂▁ @@ -35,7 +38,7 @@ spinner() { printf '\033[s\033[u[ ▂ ] %s\033[u' "$str"; sleep "$delay" printf '\033[s\033[u[ ▁ ] %s\033[u' "$str"; sleep "$delay" done - wait ${PROC} + wait "${PROC}" retval=$? printf '\033[s\033[u%*s\033[u\033[0m' $((${#str}+6)) " " # return to normal tput cnorm # restore cursor |