tmux-resurrect/scripts/spinner_helpers.sh
2014-08-29 18:59:14 +02:00

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
}