dot_files/dot_tmux/plugins/tmux-resurrect/scripts/spinner_helpers.sh
Viktor Barzin 58ef6d327f initial
2025-11-22 22:51:27 +00:00

8 lines
124 B
Bash

start_spinner() {
$CURRENT_DIR/tmux_spinner.sh "$1" "$2" &
export SPINNER_PID=$!
}
stop_spinner() {
kill $SPINNER_PID
}