diff options
Diffstat (limited to 'src/.tmux/themes/red.theme')
-rwxr-xr-x | src/.tmux/themes/red.theme | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/.tmux/themes/red.theme b/src/.tmux/themes/red.theme index 16e9c30..4f2bb90 100755 --- a/src/.tmux/themes/red.theme +++ b/src/.tmux/themes/red.theme @@ -1,15 +1,31 @@ -# Red Theme (Black on Bright Red) +# Red Theme (Black on Bright Red) with live clock + +# Status bar background and foreground set -g status-bg "#ff5555" set -g status-fg "#000000" +# Refresh status bar every second (for live clock) +set -g status-interval 1 + +# Status left (session name) set -g status-left "#[bold]#[fg=#000000,bg=#ff5555] #S #[default]" -set -g status-right "#[bold]#[fg=#000000,bg=#ff5555] %H:%M | %d %b %Y | #H #[default]" +# Status right (clock, date, host) +set -g status-right "#[bold]#[fg=#000000,bg=#ff5555] %H:%M:%S | %d %b %Y | #H #[default]" + +# Window status inactive setw -g window-status-format "#[fg=#000000,bg=#ff5555] #I:#W #[default]" + +# Window status active (inverse colors) setw -g window-status-current-format "#[fg=#ff5555,bg=#000000] #I:#W #[default]" + +# Window styles setw -g window-status-style fg="#000000",bg="#ff5555" setw -g window-status-current-style fg="#ff5555",bg="#000000" +# Pane borders set -g pane-border-style fg="#ff5555" set -g pane-active-border-style fg="#000000" + +# Message style (prompts, commands) set -g message-style bg="#ff5555",fg="#000000" |