mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2025-09-07 18:37:05 +00:00
Fix for multiple users on the same machine
The issue and fix are described in https://github.com/tmux-plugins/tmux-continuum/issues/16 . Without this change, tmux-continuum works only for one tmux server on the machine. In a multi-user environment (e.g. a shared server), when multiple users are running their own tmux servers, this means that tmux-continuum works only for one of the users. This change enables tmux-continuum for one tmux server per user instead of one tmux server per machine.
This commit is contained in:
@ -24,7 +24,8 @@ current_tmux_server_pid() {
|
||||
|
||||
all_tmux_processes() {
|
||||
# ignores `tmux source-file .tmux.conf` command used to reload tmux.conf
|
||||
ps -Ao "command pid" |
|
||||
local user_id=$(id -u)
|
||||
ps -u $user_id -o "command pid" |
|
||||
\grep "^tmux" |
|
||||
\grep -v "^tmux source"
|
||||
}
|
||||
|
Reference in New Issue
Block a user