diff options
Diffstat (limited to 'tmux.conf')
| -rw-r--r-- | tmux.conf | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -1,7 +1,15 @@ -set -g status-bg green -set -g status-fg black -set-window-option -g window-status-current-bg black -set-window-option -g window-status-current-fg green + +# *OLD* way to set styles +# set -g status-bg green +# set -g status-fg black +# set-window-option -g window-status-current-bg black +# set-window-option -g window-status-current-fg green + +# New way: +set -g status-style "fg=green,bg=black" +set-window-option -g window-status-current-style "bg=green,fg=black" +set -g status-right "#[fg=black,bg=green] #(whoami)@#h|m:#(sh $HOME/.tmux_helper.sh memory)|l:#(sh $HOME/.tmux_helper.sh load)|#(sh $HOME/.tmux_helper.sh s_uptime)" + # Pretty nifty little option to mirror input for all panes bind M-s setw synchronize-panes |
