2016-01-28 01:11:03 +01:00
|
|
|
|
### statusbar {{{
|
2015-09-22 15:35:57 +02:00
|
|
|
|
|
|
|
|
|
# Couleur du foreground (premier plan)
|
|
|
|
|
set -g status-fg yellow
|
|
|
|
|
# Couleur du background (arrière plan)
|
|
|
|
|
set -g status-bg black
|
|
|
|
|
|
|
|
|
|
## Terminaux par défaut
|
|
|
|
|
# Window foreground color
|
|
|
|
|
set-window-option -g window-status-fg cyan
|
|
|
|
|
# Window background color
|
|
|
|
|
set-window-option -g window-status-bg default
|
|
|
|
|
# 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
|
|
|
|
|
# Current windows foreground color
|
|
|
|
|
set-window-option -g window-status-current-fg black
|
|
|
|
|
# Current windows background color
|
|
|
|
|
set-window-option -g window-status-current-bg cyan
|
|
|
|
|
# Attribut (cf ci-dessus pour la liste)
|
|
|
|
|
set-window-option -g window-status-current-attr dim
|
|
|
|
|
|
|
|
|
|
## Terminal avec notification
|
|
|
|
|
# Couleur du foreground
|
|
|
|
|
# Couleur du background
|
|
|
|
|
# Attribut
|
|
|
|
|
#setw -g window-status-alert-attr default
|
|
|
|
|
#setw -g window-status-alert-fg red
|
|
|
|
|
#setw -g window-status-alert-bg default
|
|
|
|
|
|
|
|
|
|
## Panel par défaut
|
|
|
|
|
set -g pane-border-fg white
|
|
|
|
|
|
|
|
|
|
## Panel actif
|
|
|
|
|
set -g pane-active-border-fg cyan
|
|
|
|
|
|
2016-01-28 01:11:03 +01:00
|
|
|
|
### }}}
|
|
|
|
|
|
|
|
|
|
### keybindings {{{
|
|
|
|
|
|
2015-09-22 15:35:57 +02:00
|
|
|
|
## Prefix key (default: C-b)
|
|
|
|
|
# Use C-a as a prefix-key only on local session
|
|
|
|
|
unbind C-b
|
|
|
|
|
set -g prefix C-a
|
|
|
|
|
bind a send-prefix
|
2016-01-28 01:11:03 +01:00
|
|
|
|
|
|
|
|
|
### }}}
|