[unix] 활성 tmux 탭 색상 설정

활성 (현재) tmux 탭의 배경을 변경할 수 있습니까?

tmux 1.9우분투 15.04에서 사용 하고 있습니다.

$ tmux -V
tmux 1.9

나는 노력했다 :

set-option -g pane-active-border-fg red

그러나 결과는 변경되지 않았습니다.

나는 3-bash*빨간 배경을 가질 것으로 예상했다 .



답변

창 활성 배경색을 설정하지 않았으며 활성 패널 테두리 만 설정하십시오.

set-window-option -g window-status-current-bg red


답변

버전 2.9에서는이 옵션을 다음과 같이 변경해야합니다.

# Active window title color
setw -g window-status-current-style fg=black,bg=white

여기에 알맞은 설명이있는 논쟁이 있습니다 : https://github.com/tmux/tmux/issues/1689

그리고 FAQ :
https://github.com/tmux/tmux/wiki/FAQ#how-do-i-translate–fg–bg-and–attr-options-into–style-options


답변