23 lines
610 B
Plaintext
23 lines
610 B
Plaintext
# general
|
|
#
|
|
set -g default-terminal "screen-256color"
|
|
|
|
# left status
|
|
set-window-option -g status-left " [ #S ] "
|
|
set-window-option -g status-left-style "fg=blue bg=black"
|
|
set-window-option -g status-left-length 30
|
|
|
|
# right status
|
|
set-window-option -g status-right " %I:%M%p %d-%b-%y "
|
|
set-window-option -g status-right-style "fg=blue bg=black"
|
|
|
|
# inactive windows
|
|
set-window-option -g window-status-format " #I: #W "
|
|
|
|
# active windows
|
|
set-window-option -g window-status-current-format " #I: #W "
|
|
set-window-option -g window-status-current-style "bg=black fg=blue bright"
|
|
|
|
# main bg color
|
|
set -g status-bg blue
|