Don't start auto-saving if another tmux server is running

This commit is contained in:
Bruno Sutic
2015-02-20 02:05:58 +01:00
parent 297e5b6993
commit fb641881c2
4 changed files with 52 additions and 31 deletions

View File

@ -14,3 +14,33 @@ set_tmux_option() {
local value="$2"
tmux set-option -gq "$option" "$value"
}
# multiple tmux server detection helpers
current_tmux_server_pid() {
echo "$TMUX" |
cut -f2 -d","
}
all_tmux_processes() {
ps -Ao "command pid" |
\grep "^tmux"
}
number_tmux_processes_except_current_server() {
all_tmux_processes |
\grep -v " $(current_tmux_server_pid)$" |
wc -l |
sed "s/ //g"
}
number_current_server_client_processes() {
tmux list-clients |
wc -l |
sed "s/ //g"
}
another_tmux_server_running_on_startup() {
# there are 2 tmux processes (current tmux server + 1) on tmux startup
[ "$(number_tmux_processes_except_current_server)" -gt 1 ]
}