mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2024-11-22 03:08:48 +00:00
Initializer script checks tmux version
This commit is contained in:
parent
a53b6a10e6
commit
099cc256f3
@ -4,3 +4,4 @@
|
||||
- first working version
|
||||
- run the save script in the background
|
||||
- do not start saving right after tmux is started
|
||||
- add a check for tmux version to the initializer script
|
||||
|
@ -15,9 +15,11 @@ add_resurrect_save_interpolation() {
|
||||
}
|
||||
|
||||
main() {
|
||||
# Don't start saving right after tmux is started.
|
||||
# We wanna give user a chance to restore previous session.
|
||||
set_last_save_timestamp
|
||||
add_resurrect_save_interpolation
|
||||
if supported_tmux_version_ok; then
|
||||
# Don't start saving right after tmux is started.
|
||||
# We wanna give user a chance to restore previous session.
|
||||
set_last_save_timestamp
|
||||
add_resurrect_save_interpolation
|
||||
fi
|
||||
}
|
||||
main
|
||||
|
@ -6,10 +6,6 @@ source "$CURRENT_DIR/helpers.sh"
|
||||
source "$CURRENT_DIR/variables.sh"
|
||||
source "$CURRENT_DIR/shared.sh"
|
||||
|
||||
supported_tmux_version_ok() {
|
||||
$CURRENT_DIR/check_tmux_version.sh "$SUPPORTED_VERSION"
|
||||
}
|
||||
|
||||
enough_time_since_last_run_passed() {
|
||||
local last_saved_timestamp="$(get_tmux_option "$last_auto_save_option" "0")"
|
||||
local interval_minutes="$(get_tmux_option "$auto_save_interval_option" "$auto_save_interval_default")"
|
||||
|
@ -5,3 +5,7 @@ current_timestamp() {
|
||||
set_last_save_timestamp() {
|
||||
set_tmux_option "$last_auto_save_option" "$(current_timestamp)"
|
||||
}
|
||||
|
||||
supported_tmux_version_ok() {
|
||||
$CURRENT_DIR/check_tmux_version.sh "$SUPPORTED_VERSION"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user