활성 tmux 탭 색상 설정

활성 tmux 탭 색상 설정

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

tmux 1.9저는 우분투 15.04를 사용하고 있습니다.

$ tmux -V
tmux 1.9

나는 이것을 시도한다:

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

그러나 결과는 변하지 않습니다:

나는 3-bash*빨간색 배경을 기대했습니다.

답변1

버전 3.3의 주석에 제공된 답변을 사용하십시오.여기@AntK로.

set-window-option -g window-status-current-style 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

답변2

창 활성 배경색을 설정하지 않았습니다. 활성 패널 테두리만 설정했습니다. 다음을 시도해 보십시오.

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

관련 정보