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
|
# Cyberpunk neon style
# Background and foreground for status bar
# set -g status-bg "#0f0f1a" # Very dark blue-black background
set -g status-bg "#000000" # Very dark blue-black background
set -g status-fg "#ff6fff" # Neon pink foreground
# Status left (session name)
# set -g status-left "#[bold]#[fg=#ff6fff,bg=#0f0f1a] ⧉ #S #[default]"
set -g status-left "#[bold]#[fg=#ff6fff,bg=#000000] ⧉ #S #[default]"
# Refresh status bar every second (for live clock)
set -g status-interval 1
# Status right (clock, date, host)
#set -g status-right "#[bold]#[fg=#00d7ff,bg=#0f0f1a] %H:%M #[fg=#ff6fff,bg=#0f0f1a]| %d %b %Y #[fg=#ff6fff,bg=#0f0f1a]| #[fg=#00d7ff,bg=#0f0f1a]#H #[default]"
set -g status-right "#[bold]#[fg=#00d7ff,bg=#000000] %H:%M:%S #[fg=#ff6fff,bg=#000000]| %d %b %Y #[fg=#ff6fff,bg=#000000]| #[fg=#00d7ff,bg=#000000]#H #[default]"
# Window status inactive
setw -g window-status-format "#[fg=#ff6fff,bg=#0f0f1a] #I:#W #[default]"
# Window status active (inverse colors)
setw -g window-status-current-format "#[fg=#0f0f1a,bg=#00d7ff] #I:#W #[default]"
# Window styles
setw -g window-status-style fg=#ff6fff,bg=#0f0f1a
setw -g window-status-current-style fg=#0f0f1a,bg=#00d7ff
# Pane borders
set -g pane-border-style fg=#ff00ff
set -g pane-active-border-style fg=#00d7ff
# Message style (prompts, commands)
set -g message-style fg=#ff6fff,bg=#0f0f1a
# Clock colors
set -g clock-mode-color "#00d7ff"
set -g clock-mode-style 24
|