mirror of
https://github.com/tmux-plugins/tmux-resurrect.git
synced 2024-11-22 12:38:47 +00:00
9 lines
159 B
Bash
9 lines
159 B
Bash
start_spinner() {
|
|
$CURRENT_DIR/tmux_spinner.sh "Restoring tmux..." "Tmux restore complete!" &
|
|
export SPINNER_PID=$!
|
|
}
|
|
|
|
stop_spinner() {
|
|
kill $SPINNER_PID
|
|
}
|