blob: b7e67dd525d065d2f403dcc3aed91930cb180a20 (
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
|
# 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]"
# 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"
|