1
0
mirror of https://github.com/tmux-plugins/tmux-resurrect.git synced 2024-07-01 08:20:59 +02:00
tmux-resurrect/scripts/spinner_helpers.sh
2014-08-28 12:58:07 +02:00

9 lines
168 B
Bash

start_spinner() {
$CURRENT_DIR/tmux_spinner.sh "Restoring sessions..." "Restored all Tmux sessions!" &
export SPINNER_PID=$!
}
stop_spinner() {
kill $SPINNER_PID
}