设置活动 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

以及常见问题解答: 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

相关内容