From 36c702cb88b7904e0023181a58bb09f0188be757 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 27 Feb 2014 22:33:39 +0000 Subject: [PATCH] Improve TMUXIFIER_TMUX_OPTS section --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 586955e..e94dd20 100644 --- a/README.md +++ b/README.md @@ -109,13 +109,20 @@ eval (tmuxifier init -) ``` If you need to pass custom arguments to tmux itself, you can do so by setting -the `TMUXIFIER_TMUX_OPTS` environment variable. For example: +the `TMUXIFIER_TMUX_OPTS` environment variable. For example to set global +arguments: ```bash export TMUXIFIER_TMUX_OPTS="-L my-awesome-socket-name" eval "$(tmuxifier init -)" ``` +Or dynamically when calling `tmuxifier`: + +```bash +TMUXIFIER_TMUX_OPTS="-L other-session" tmuxifier load-session welcome +``` + ## Updating ```bash