diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-15 08:32:23 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-15 08:39:39 -0500 |
commit | 8b5530be21a8e28e3e2c1b9917ca3645fbd13398 (patch) | |
tree | 8f8eee3c3e94dfdf60c025fd1fd2308738ef7341 /functions.sh | |
parent | 801a63d7edbb098fdf4fa384366ba91e39845c07 (diff) |
Create fail and success functions and remove trailing white spaces at ends of lines.
Diffstat (limited to 'functions.sh')
-rw-r--r-- | functions.sh | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/functions.sh b/functions.sh index a260f66..b343e65 100644 --- a/functions.sh +++ b/functions.sh @@ -18,20 +18,15 @@ download() export -f download # Shows a spinner while another command is running. Randomly picks one of 12 spinner styles. -# @args command to run (with any parameters) while showing a spinner. +# @args command to run (with any parameters) while showing a spinner. # E.g. ‹spinner sleep 10› -function shutdown() { - tput cnorm # reset cursor -} -trap shutdown EXIT - function cursorBack() { echo -en "\033[$1D" } function spinner() { - # make sure we use non-unicode character type locale + # make sure we use non-unicode character type locale # (that way it works for any locale as long as the font supports the characters) local numspinners=12 @@ -114,3 +109,15 @@ function spinner() { wait "$pid" # capture exit code return $? } + +fail() +{ + printf "%b" "${IRED}${1}${RST}\n" +} +export -f fail + +success() +{ + printf "%b" "${IGRN}${1}${RST}\n" +} +export -f success |