Files
infra/dotfiles/common/.tmux/plugins/tmux-resurrect/scripts/spinner_helpers.sh
2026-03-17 10:17:42 +01:00

9 lines
124 B
Bash

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