Don't start continuous saving right after tmux is started

pull/7/head
Bruno Sutic 2015-02-12 01:31:56 +01:00
parent 5ca7656df0
commit 2e40ecf4d0
No known key found for this signature in database
GPG Key ID: 66D96E4F2F7EF26C
4 changed files with 15 additions and 9 deletions

View File

@ -3,3 +3,4 @@
### master
- first working version
- run the save script in the background
- do not start saving right after tmux is started

View File

@ -2,7 +2,9 @@
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$CURRENT_DIR/scripts/helpers.sh"
source "$CURRENT_DIR/helpers.sh"
source "$CURRENT_DIR/variables.sh"
source "$CURRENT_DIR/shared.sh"
save_command_interpolation="#($CURRENT_DIR/scripts/resurrect_auto_save.sh)"
@ -13,6 +15,9 @@ 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
}
main

View File

@ -4,19 +4,12 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
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"
}
current_timestamp() {
echo "$(date +%s)"
}
set_last_save_timestamp() {
set_tmux_option "$last_auto_save_option" "$(current_timestamp)"
}
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")"

7
scripts/shared.sh Normal file
View File

@ -0,0 +1,7 @@
current_timestamp() {
echo "$(date +%s)"
}
set_last_save_timestamp() {
set_tmux_option "$last_auto_save_option" "$(current_timestamp)"
}