blob: 4f2bb9039e36ded6c42812afb41cfbaf62180a83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# 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]"
# 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"
|