mirror of
https://github.com/tmux-plugins/tmux-resurrect.git
synced 2024-11-14 00:08:49 +00:00
9 lines
168 B
Bash
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
|
||
|
}
|