blob: 9a0da4f068077ec05f71c65624fc8f1c4a6877c6 (
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
32
33
34
35
|
# Dark Ice neon style
# Status bar background dark ice
set -g status-bg "#001122" # Dark ice blue background
set -g status-fg "#00d7ff" # Neon icy blue foreground
# Status left (session name)
set -g status-left "#[bold]#[fg=#00d7ff,bg=#001122] ⧉ #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=#00d7ff,bg=#001122] %H:%M:%S #[fg=#00ffff,bg=#001122]| %d %b %Y #[fg=#00d7ff,bg=#001122]| #[fg=#00ffff,bg=#001122]#H #[default]"
# Window status inactive
setw -g window-status-format "#[fg=#00ffff,bg=#001122] #I:#W #[default]"
# Window status active (inverse colors)
setw -g window-status-current-format "#[fg=#001122,bg=#00d7ff] #I:#W #[default]"
# Window styles
setw -g window-status-style fg=#00ffff,bg=#001122
setw -g window-status-current-style fg=#001122,bg=#00d7ff
# Pane borders
set -g pane-border-style fg=#00ffff
set -g pane-active-border-style fg=#00d7ff
# Message style (prompts, commands)
set -g message-style fg=#00d7ff,bg=#001122
# Clock colors
set -g clock-mode-color "#00d7ff"
set -g clock-mode-style 24
|