Fix migration to 2.9 and removed options
See : https://github.com/tmux/tmux/blob/2.9/CHANGES#L45 https://github.com/tmux/tmux/wiki/FAQ#how-do-i-translate--fg--bg-and--attr-options-into--style-options
This commit is contained in:
parent
5b87236671
commit
030a75186d
|
@ -1,33 +1,33 @@
|
||||||
|
|
||||||
### statusbar {{{
|
### statusbar {{{
|
||||||
|
|
||||||
# forground color
|
# Attribut list {{{
|
||||||
set -g status-fg "${debianred}"
|
## bright/bold:
|
||||||
# background color
|
## dim:
|
||||||
set -g status-bg black
|
## underscore:
|
||||||
|
## blink: clignotant
|
||||||
|
## reverse: reverse background and foreground colors
|
||||||
|
## hidden:
|
||||||
|
## italics:
|
||||||
|
## overline: Needs Smol extension, see the manual
|
||||||
|
## strikethrough: barré
|
||||||
|
## double-underscore:
|
||||||
|
## curly-underscore:
|
||||||
|
## dotted-underscore:
|
||||||
|
## dashed-underscore:
|
||||||
|
# }}}
|
||||||
|
|
||||||
## Terminaux par défaut
|
# Status line style
|
||||||
# Window foreground color
|
## BackGround and ForeGround
|
||||||
set-window-option -g window-status-fg "${debianred}"
|
set -g status-style fg="${debianred}",bg=black
|
||||||
# Window background color
|
|
||||||
set-window-option -g window-status-bg "${darkgrey}"
|
|
||||||
# Attribut
|
|
||||||
#bright/bold:
|
|
||||||
#dim:
|
|
||||||
#underscore:
|
|
||||||
#blink: "clignotant"?
|
|
||||||
#reverse: reverse background and foreground colors
|
|
||||||
#hidden:
|
|
||||||
#italics:
|
|
||||||
set-window-option -g window-status-attr bold
|
|
||||||
|
|
||||||
## Terminal actif
|
# Status line style for a single window
|
||||||
# Current windows foreground color
|
## BackGround, ForeGround and attribut
|
||||||
set-window-option -g window-status-current-fg black
|
set -g window-status-style bg="${darkgrey}",fg="${debianred}",bold
|
||||||
# Current windows background color
|
|
||||||
set-window-option -g window-status-current-bg "${debianred}"
|
# Status line style for the currently active window
|
||||||
# Attribut (cf ci-dessus pour la liste)
|
## BackGround, ForeGround and attribut
|
||||||
set-window-option -g window-status-current-attr dim
|
set -g window-status-current-style bg="${debianred}",fg=black,dim
|
||||||
|
|
||||||
# selection
|
# selection
|
||||||
set -wg mode-style bg="${debianred}",fg=white,bold
|
set -wg mode-style bg="${debianred}",fg=white,bold
|
||||||
|
@ -42,11 +42,11 @@ set -g clock-mode-colour "${debianred}"
|
||||||
#setw -g window-status-alert-fg red
|
#setw -g window-status-alert-fg red
|
||||||
#setw -g window-status-alert-bg default
|
#setw -g window-status-alert-bg default
|
||||||
|
|
||||||
## Panel par défaut
|
# Pane border style for panes aside the active one
|
||||||
set -g pane-border-fg white
|
set -g pane-border-style fg=white
|
||||||
|
|
||||||
## Panel actif
|
# Pane border style for the currently active pane
|
||||||
set -g pane-active-border-fg "${debianred}"
|
set -g pane-active-border-style fg="${debianred}"
|
||||||
|
|
||||||
# right statusbar
|
# right statusbar
|
||||||
# %H:%M:%S : Affiche de l'heure (actualisation lors de manipulation ou en fonction de la valeur de status-interval)
|
# %H:%M:%S : Affiche de l'heure (actualisation lors de manipulation ou en fonction de la valeur de status-interval)
|
||||||
|
|
Loading…
Reference in New Issue