2015-02-12 00:31:56 +00:00
|
|
|
current_timestamp() {
|
|
|
|
echo "$(date +%s)"
|
|
|
|
}
|
|
|
|
|
|
|
|
set_last_save_timestamp() {
|
|
|
|
set_tmux_option "$last_auto_save_option" "$(current_timestamp)"
|
|
|
|
}
|
2015-02-12 02:37:34 +00:00
|
|
|
|
|
|
|
supported_tmux_version_ok() {
|
|
|
|
$CURRENT_DIR/check_tmux_version.sh "$SUPPORTED_VERSION"
|
|
|
|
}
|