aboutsummaryrefslogtreecommitdiff
path: root/tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.conf')
-rw-r--r--tmux.conf16
1 files changed, 12 insertions, 4 deletions
diff --git a/tmux.conf b/tmux.conf
index 100ed9b..a7937a5 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -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