diff options
Diffstat (limited to 'src/.tmux/themes/linux.theme')
-rw-r--r-- | src/.tmux/themes/linux.theme | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/.tmux/themes/linux.theme b/src/.tmux/themes/linux.theme new file mode 100644 index 0000000..2741e83 --- /dev/null +++ b/src/.tmux/themes/linux.theme @@ -0,0 +1,38 @@ +# ================================ +# Linux style: black and light gray (active tab light foreground) +# ================================ + +# Status bar background black, foreground light gray +set -g status-bg "#000000" # Pure black +set -g status-fg "#cccccc" # Light gray + +# Status left (session name) +set -g status-left "#[bold]#[fg=#cccccc,bg=#000000] ⧉ #S #[default]" + +# Refresh status bar every second (live clock) +set -g status-interval 1 + +# Status right (clock, date, host) +set -g status-right "#[bold]#[fg=#cccccc,bg=#000000] %H:%M:%S | %d %b %Y | #H #[default]" + +# Window status inactive (gray on black, bold) +setw -g window-status-format "#[bold,fg=#888888,bg=#000000] #I:#W #[default]" + +# Window status active (inverse, darker background, light foreground, bold) +setw -g window-status-current-format "#[bold,fg=#eeeeee,bg=#666666] #I:#W #[default]" + +# Window styles +setw -g window-status-style fg=#888888,bg=#000000 +setw -g window-status-current-style fg=#eeeeee,bg=#666666 + +# Pane borders +set -g pane-border-style fg=#666666 +set -g pane-active-border-style fg=#cccccc + +# Message style (prompts, commands) +set -g message-style fg=#cccccc,bg=#000000 + +# Clock colors +set -g clock-mode-color "#cccccc" +set -g clock-mode-style 24 + |