2021-06-01 07:17:41 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# TokyoNight colors for Tmux
|
|
|
|
|
2022-11-11 06:23:27 +00:00
|
|
|
set -g mode-style "fg=#2e7de9,bg=#a8aecb"
|
2021-06-01 07:17:41 +00:00
|
|
|
|
2022-11-11 06:23:27 +00:00
|
|
|
set -g message-style "fg=#2e7de9,bg=#a8aecb"
|
|
|
|
set -g message-command-style "fg=#2e7de9,bg=#a8aecb"
|
2021-06-01 07:17:41 +00:00
|
|
|
|
2022-11-11 06:23:27 +00:00
|
|
|
set -g pane-border-style "fg=#a8aecb"
|
|
|
|
set -g pane-active-border-style "fg=#2e7de9"
|
2021-06-01 07:17:41 +00:00
|
|
|
|
|
|
|
set -g status "on"
|
|
|
|
set -g status-justify "left"
|
|
|
|
|
2022-11-11 06:23:27 +00:00
|
|
|
set -g status-style "fg=#2e7de9,bg=#e9e9ec"
|
2021-06-01 07:17:41 +00:00
|
|
|
|
|
|
|
set -g status-left-length "100"
|
|
|
|
set -g status-right-length "100"
|
|
|
|
|
|
|
|
set -g status-left-style NONE
|
|
|
|
set -g status-right-style NONE
|
|
|
|
|
2022-11-11 06:23:27 +00:00
|
|
|
set -g status-left "#[fg=#e9e9ed,bg=#2e7de9,bold] #S #[fg=#2e7de9,bg=#e9e9ec,nobold,nounderscore,noitalics]"
|
|
|
|
set -g status-right "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#2e7de9,bg=#e9e9ec] #{prefix_highlight} #[fg=#a8aecb,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#2e7de9,bg=#a8aecb] %Y-%m-%d %I:%M %p #[fg=#2e7de9,bg=#a8aecb,nobold,nounderscore,noitalics]#[fg=#e9e9ed,bg=#2e7de9,bold] #h "
|
2021-06-01 07:17:41 +00:00
|
|
|
|
2022-11-11 06:23:27 +00:00
|
|
|
setw -g window-status-activity-style "underscore,fg=#6172b0,bg=#e9e9ec"
|
2021-06-01 07:17:41 +00:00
|
|
|
setw -g window-status-separator ""
|
2022-11-11 06:23:27 +00:00
|
|
|
setw -g window-status-style "NONE,fg=#6172b0,bg=#e9e9ec"
|
|
|
|
setw -g window-status-format "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[default] #I #W #F #[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]"
|
|
|
|
setw -g window-status-current-format "#[fg=#e9e9ec,bg=#a8aecb,nobold,nounderscore,noitalics]#[fg=#2e7de9,bg=#a8aecb,bold] #I #W #F #[fg=#a8aecb,bg=#e9e9ec,nobold,nounderscore,noitalics]"
|
2022-10-19 18:50:05 +00:00
|
|
|
|
|
|
|
# tmux-plugins/tmux-prefix-highlight support
|
2022-11-11 06:23:27 +00:00
|
|
|
set -g @prefix_highlight_output_prefix "#[fg=#8c6c3e]#[bg=#e9e9ec]#[fg=#e9e9ec]#[bg=#8c6c3e]"
|
2022-10-19 18:50:05 +00:00
|
|
|
set -g @prefix_highlight_output_suffix ""
|