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

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

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

tmux 1.9私はUbuntu 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

おすすめ記事