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
32
33
34
35
36
37
38
39
|
# ================================
# 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]"
set -g status-right "#[bold]#[fg=#cccccc,bg=#000000] #H | %d %b %Y | %H:%M:%S #[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
|