mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2024-11-14 22:28:47 +00:00
28 lines
759 B
Bash
28 lines
759 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
source "$CURRENT_DIR/helpers.sh"
|
||
|
source "$CURRENT_DIR/variables.sh"
|
||
|
|
||
|
auto_restore_not_disabled() {
|
||
|
local auto_restore_value="$(get_tmux_option "$auto_restore_option" "$auto_restore_default")"
|
||
|
[ "$auto_restore_value" == "on" ] && [ ! -f "$auto_restore_halt_file" ]
|
||
|
}
|
||
|
|
||
|
fetch_and_run_tmux_resurrect_restore_script() {
|
||
|
# give tmux some time to start and source all the plugins
|
||
|
sleep 1
|
||
|
local resurrect_restore_script_path="$(get_tmux_option "$resurrect_restore_path_option" "")"
|
||
|
if [ -n "$resurrect_restore_script_path" ]; then
|
||
|
"$resurrect_restore_script_path"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
main() {
|
||
|
if auto_restore_not_disabled; then
|
||
|
fetch_and_run_tmux_resurrect_restore_script
|
||
|
fi
|
||
|
}
|
||
|
main
|