-
Notifications
You must be signed in to change notification settings - Fork 143
User List
wemux can display a list of connected users, indicating users in mirror mode with [m] at the end of their name.
If you'd like to see a list of all users currently connected to the wemux session, you have three options:
Enter wemux users
in the terminal to display a list of all currently
connected wemux users.
$ wemux users
Users connected to 'host':
1. furd
2. csagan[m]
You can add the user list to your status bar by adding #(wemux status_users)
where you see fit by editing your ~/tmux.conf
file.
set -g status-right "#(wemux status_users)"
If you'd rather display users on command via a tmux message, similar to the
user attachment/detachment messages, by editing your ~/tmux.conf
file.
Pick whatever key you'd like to bind it to. Using t as an example:
unbind t
bind t run-shell 'wemux display_users'
Note that the tmux prefix should be pressed before t to activate the command.
User listing can be disabled by setting allow_user_list="false"
in
wemux.conf