tmux的配置文件是~/.tmux.confcode
unbind C-b set -g prefix C-a # bind a reload key bind R source-file ~/.tmux.conf \; display-message "Config reloaded" # status bar # color set -g status-bg black set -g status-fg white # alignment set-option -g status-justify centre # left bottom corner set-option -g status-left '#[bg=black,fg=green][#[fg=cyan]#S#[fg=green]]' set-option -g status-left-length 20 # windown list setw -g automatic-rename on set-window-option -g window-status-format '#[dim]#I:#[default]#W#[fg=grey,dim]' set-window-option -g window-status-current-format '#[fg=cyan,bold]#I#[fg=blue]:#[fg=cyan]#W#[fg=dim]' # right bottom corner set -g status-right "\"#H\"%Y-%m-%d %H:%M:%S"
R
(大寫)爲裝載.tmux.conf
文件,這樣就不用退出再進入tmux了