diff --git a/.tmux.conf b/.tmux.conf index 0841907..69cddc9 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -38,3 +38,17 @@ bind -r L resize-pane -R 2 bind -r C-h previous-window # select previous window bind -r C-l next-window # select next window bind Tab last-window # move to last active window + +# Source of example configuration +# https://arcolinux.com/everything-you-need-to-know-about-tmux-status-bar/ +set-option -g status on +set-option -g status-interval 1 +set-option -g status-position bottom +set-option -g status-style fg=white,bg=black +set-option -g status-left-length 20 +set-option -g status-left-style default +set-option -g status-right-length 140 +set-option -g status-right-style default +set-option -g status-right "%a %H:%M:%S %Y-%m-%d" +set -g pane-border-style fg=default +set -g pane-active-border-style "bg=default fg=color244"