pentest-distro-builder/filesystem/root/.tmux/plugins/tmux-resurrect/scripts/spinner_helpers.sh

9 lines
124 B
Bash
Raw Normal View History

2018-09-27 17:40:01 -06:00
start_spinner() {
$CURRENT_DIR/tmux_spinner.sh "$1" "$2" &
export SPINNER_PID=$!
}
stop_spinner() {
kill $SPINNER_PID
}