22 lines
1 KiB
Text
22 lines
1 KiB
Text
|
|
# tangere-light status bar, sourced by the client-light-theme hook in ~/.tmux.conf
|
||
|
|
#
|
||
|
|
# Same layout as tmux-dark.conf, with each colour swapped for the tangere-light
|
||
|
|
# palette entry at the same index. Roles are preserved: text on an accent uses
|
||
|
|
# the theme background, which is now light rather than dark.
|
||
|
|
# #000000 foreground #fdfdfa background #d1d1d1 dim (15)
|
||
|
|
# #223355 blue (4) #004c73 cyan (2) #663d52 magenta (5)
|
||
|
|
|
||
|
|
# Tweak status bar styles
|
||
|
|
set -g status-style bg=default,fg='#000000'
|
||
|
|
|
||
|
|
# Left side: session name with blue accent
|
||
|
|
set -g status-left "#[fg=#fdfdfa,bg=#223355,bold] #S #[fg=#223355,bg=default]\ue0b0"
|
||
|
|
|
||
|
|
# Right side: multi-segment with transitions
|
||
|
|
set -g status-right "#[fg=#004c73,bg=default]\ue0b2#[fg=#fdfdfa,bg=#004c73] %H:%M #[fg=#663d52,bg=#004c73]\ue0b2#[fg=#fdfdfa,bg=#663d52] %d-%b "
|
||
|
|
|
||
|
|
# Inactive windows (no powerline symbols)
|
||
|
|
setw -g window-status-format "#[fg=#d1d1d1,bg=default] #I #W "
|
||
|
|
|
||
|
|
# Active window (cyan highlight, no powerline)
|
||
|
|
setw -g window-status-current-format "#[fg=#fdfdfa,bg=#004c73,bold] #I #W "
|