We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e22796 + 509e898 commit 10c6d73Copy full SHA for 10c6d73
continuum.tmux
@@ -44,7 +44,9 @@ add_resurrect_save_interpolation() {
44
}
45
46
just_started_tmux_server() {
47
- [ "$(tmux display-message -p -F '#{start_time}')" -gt "$(($(date +%s)-10))" ]
+ local tmux_start_time
48
+ tmux_start_time="$(tmux display-message -p -F '#{start_time}')"
49
+ [ "$tmux_start_time" == "" ] || [ "$tmux_start_time" -gt "$(($(date +%s)-10))" ]
50
51
52
start_auto_restore_in_background() {
0 commit comments