diff options
Diffstat (limited to 'src/.tmux/themes/cyan.theme')
-rwxr-xr-x | src/.tmux/themes/cyan.theme | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/.tmux/themes/cyan.theme b/src/.tmux/themes/cyan.theme index d4ec685..b7e67dd 100755 --- a/src/.tmux/themes/cyan.theme +++ b/src/.tmux/themes/cyan.theme @@ -1,15 +1,31 @@ -# Cyan Theme (Black on Cyan) +# Cyan Theme (Black on Cyan) with live clock + +# Status bar background and foreground set -g status-bg "#00ffff" 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=#00ffff] #S #[default]" -set -g status-right "#[bold]#[fg=#000000,bg=#00ffff] %H:%M | %d %b %Y | #H #[default]" +# Status right (clock, date, host) +set -g status-right "#[bold]#[fg=#000000,bg=#00ffff] %H:%M:%S | %d %b %Y | #H #[default]" + +# Window status inactive setw -g window-status-format "#[fg=#000000,bg=#00ffff] #I:#W #[default]" + +# Window status active (inverse colors) setw -g window-status-current-format "#[fg=#00ffff,bg=#000000] #I:#W #[default]" + +# Window styles setw -g window-status-style fg="#000000",bg="#00ffff" setw -g window-status-current-style fg="#00ffff",bg="#000000" +# Pane borders set -g pane-border-style fg="#00ffff" set -g pane-active-border-style fg="#000000" + +# Message style (prompts, commands) set -g message-style bg="#00ffff",fg="#000000" |