web-dev-qa-db-ja.com

アクティブなtmuxタブの色を設定する

アクティブな(現在の)tmuxタブの背景を変更することはできますか?

Ubuntu 15.04でtmux 1.9を使用しています。

$ tmux -V
tmux 1.9

私がやろうとした:

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

しかし結果は変わりませんでした:

3-bash*の背景が赤になると思っていました。

15
Ionică Bizău

ウィンドウのアクティブな背景色を設定していません。アクティブなパネルの境界線のみを設定しています。以下を試してください:

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

バージョン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-オプション

13
Anudeep Samaiya