1
0
mirror of https://github.com/tmux-plugins/tmux-resurrect.git synced 2024-06-28 07:50:56 +02:00
tmux-resurrect/scripts/spinner_helpers.sh

9 lines
159 B
Bash
Raw Normal View History

start_spinner() {
$CURRENT_DIR/tmux_spinner.sh "Restoring tmux..." "Tmux restore complete!" &
export SPINNER_PID=$!
}
stop_spinner() {
kill $SPINNER_PID
}