Linux

設置活動的 tmux 選項卡顏色

  • January 7, 2022

是否可以更改活動(目前)tmux 選項卡的背景?

tmux 1.9在 Ubuntu 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

在 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

和常見問題解答: https ://github.com/tmux/tmux/wiki/FAQ#how-do-i-translate–fg–bg-and–attr-options-into–style-options

引用自:https://unix.stackexchange.com/questions/210174