mirror of
https://github.com/tmux-plugins/tmux-resurrect.git
synced 2024-10-31 22:38:58 +00:00
9 lines
124 B
Bash
9 lines
124 B
Bash
start_spinner() {
|
|
$CURRENT_DIR/tmux_spinner.sh "$1" "$2" &
|
|
export SPINNER_PID=$!
|
|
}
|
|
|
|
stop_spinner() {
|
|
kill $SPINNER_PID
|
|
}
|