Added the new statusbar in tmux

This commit is contained in:
Marcin Woźniak 2021-10-17 21:05:37 +02:00
parent 400e17dce9
commit ef45de5031
Signed by: y0rune
GPG Key ID: F204C385F57EB348
1 changed files with 14 additions and 0 deletions

View File

@ -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"