pull/31/merge
Shubham Shukla 2019-09-20 23:38:18 +00:00 committed by GitHub
commit d068cdd289
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@ source "$CURRENT_DIR/helpers.sh"
source "$CURRENT_DIR/variables.sh"
print_status() {
local save_int="$(get_tmux_option "$auto_save_interval_option")"
local save_int="$(get_tmux_option "$auto_save_interval_option" "$auto_save_interval_default")"
local status=""
local style_wrap
if [ $save_int -gt 0 ]; then

View File

@ -23,9 +23,11 @@ current_tmux_server_pid() {
}
all_tmux_processes() {
# search for "^tmux " cause there can be some other running scripts,
# whose name starts with "tmux" for eg "tmux-mem-cpu-load"
# ignores `tmux source-file .tmux.conf` command used to reload tmux.conf
ps -Ao "command pid" |
\grep "^tmux" |
\grep "^tmux " |
\grep -v "^tmux source"
}