Como eu mudo a cor do painel dividindo linhas no tmux?

32

Eu usei o seguinte comando para alterar a cor da barra de status na parte inferior da tela:

set -g status-bg colour244

Mas eu não sei como mudar a cor das linhas que dividem os painéis; Atualmente, eles são uma mistura do original verde e cinza (color244). man tmux me dá muitas informações sobre a linha de status , mas isso parece se referir à própria barra de status, não às linhas divisórias.

Eu suspeito que estou sentindo falta de terminologia aqui.

    
por quant 08.07.2014 / 02:32

1 resposta

42

Você deseja pane-active-border-style e pane-border-style :

Veja a entrada na página man :

pane-active-border-style style
Set the pane border style for the currently active pane. For how to specify style, see the message-command-style option. Attributes are ignored.

pane-border-style style
Set the pane border style for pane as aside from the active pane. For how to specify style, see the message-command-style option. Attributes are ignored.

Então, no seu ~/.tmux.conf você pode especificar cores assim:

# border colours
set -g pane-border-style fg=magenta
set -g pane-active-border-style fg=magenta
set -g pane-active-border-style bg=default

Note, eu uso o tmux 1.9a, e acho que obtenho um comportamento mais consistente usando:

set -g pane-border-fg magenta
set -g pane-active-border-fg green
set -g pane-active-border-bg default
    
por 08.07.2014 / 02:53

Tags