tmux
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
tmux [2010/09/28 20:31] – created k2patel | tmux [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
Good replacement for screen. | Good replacement for screen. | ||
+ | Following is my own tmux config file.\\ | ||
+ | Tried to setup as near as screen. | ||
+ | |||
+ | <code bash | .tmux.conf> | ||
+ | set-option -g prefix C-a | ||
+ | unbind-key C-b | ||
+ | bind-key C-a " | ||
+ | |||
+ | unbind '"' | ||
+ | unbind % # Remove default binding since we're replacing | ||
+ | bind | split-window -h | ||
+ | bind - split-window -v | ||
+ | bind '"' | ||
+ | |||
+ | # Highlight active window | ||
+ | set-window-option -g window-status-current-bg blue | ||
+ | |||
+ | # Rename Based on active names | ||
+ | setw -g automatic-rename | ||
+ | |||
+ | set -g status-right '# | ||
+ | |||
+ | setw -g monitor-activity on | ||
+ | set -g visual-activity on | ||
+ | |||
+ | # Set status bar | ||
+ | set -g status-bg black | ||
+ | set -g status-fg white | ||
+ | set -g status-left '# | ||
+ | </ | ||
+ | |||
+ | |||
+ | I have copied man page so can refer easily below. | ||
<code text> | <code text> | ||
tmux.1285705902.txt.gz · Last modified: 2020/08/10 02:29 (external edit)