From 82985172c50dbf7c1e28d924cfc3e8b83571d00a Mon Sep 17 00:00:00 2001 From: Tredecies Date: Wed, 7 Nov 2018 21:55:40 +0100 Subject: [PATCH] Tmux sessions and windows (#682) * most basic tmux sessions and windows commands added * Detach -> detach --- tmux.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tmux.md b/tmux.md index e6d584ca3..ef8927fc3 100644 --- a/tmux.md +++ b/tmux.md @@ -8,7 +8,23 @@ title: tmux -u # UTF8 mode -S ~/.tmux.socket - $ tmux attach +#### Sessions + + $ tmux new + $ tmux new -s session_name + + $ tmux attach # Default session + $ tmux attach -s session_name + + $ tmux switch -t session_name + + $ tmux ls # List sessions + + $ tmux detach + +#### Windows + + $ tmux new-window ### Help