- Source: https://github.com/tmux/tmux
- Mnaual:
man tmux
- Google Group: https://groups.google.com/forum/#!forum/tmux-users
- Mouse free
- Cross Plantform
- Sever/Client
- Just Shell Commands
- Terminal MUlitipleXer
- Tee Mucks
The correct pronunciation of "tmux" is a matter of some dispute in my office. Many avoid the issue by installing screen. @reddit
- attach
- disconneted
+++
Symbol Meaning
* Denotes the current window.
- Marks the last window (previously selected).
# Window activity is monitored and activity has been
detected.
! Window bells are monitored and a bell has occurred in
the window.
~ The window has been silent for the monitor-silence
interval.
M The window contains the marked pane.
Z The window's active pane is zoomed.
+++
+++
- Session Management
- Window Management
- Pane Management
- Kill Single Pane
- User1 Create a session
- User2 Join the session(not create a new one)
- Enjoy!
- Free to kill your session!
- tmux command(all start with tmux)
- bootstrap tmux shell
bind [key] [command]
case sensitive
+++
bind r source-file ~/.tmux.conf; display-message "Config Reloaded!"
+++
unbind C-b
set -g prefix C-a
bind C-a send-prefix
+++
unbind %
bind | split-window -h -c "#{pane_current_path}"
unbind '"'
bind - split-window -v -c "#{pane_current_path}"
+++
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
- Status Bar
- Window Name
- Bell
- Copy and Paste
Share your screen
- Plugin Manager: https://github.com/tmux-plugins/tpm
+++
Basic tmux settings everyone can agree on. https://github.com/tmux-plugins/tmux-sensible
+++
CPU, RAM, and load monitor for use with tmux https://github.com/thewtex/tmux-mem-cpu-load
+++
- Can send keys to other panes, kind of like an IDE
- Easy keybindings -- with the right config, you'll feel at home from Vim or Screen
- Vim-ish and Emacs-ish bindings built-in
- Good layout management, a lot like a tiling window manager
- Unicode seems to Just Work with modern terminals
- Some terminal issues fixed with TERM=tmux
+++
- Slow -- unsure why, but keystrokes seem laggy No more issues with slowness
- Multiplexing forces the whole session width and height to the smallest attached terminal
- Has crashed multiple times on Mac OS X, losing the entire session(happened to me)
- Has failed on Linux after upgrade, where I couldn't reconnect to my old session
+++
- Extremely stable (v1.0 was in 1987)
- Some terminal issues fixed with TERM=screen
- Emacs-ish bindings built in
- Easy to move and control horizontal panes
- When multiplexing, any attached terminal can resize a pane
+++
- No vertical splits without patch (except on Ubuntu)
- Pane splits are lost when detaching
- Getting Unicode to work takes a little finesse and determination
- Crazy status line configuration
+++
- A fork of GNU-screen
- http://byobu.co/
- Cross Plantform
man tmux
- https://pityonline.gitbooks.io/tmux-productive-mouse-free-development_zh/content/book-content/Chapter5.html
- My Blog: https://www.kawabangga.com/?s=tmux