设置活动的tmux标签颜色


14

是否可以更改活动(当前)tmux选项卡的背景?

tmux 1.9在Ubuntu 15.04上使用。

$ tmux -V
tmux 1.9

我试着做:

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

但是结果没有改变:

我希望的3-bash*背景为红色。


@jasonwryan我不想更改状态栏的前景色,而是要使当前选项卡显示不同的背景色。
尼卡比曹

Answers:


28

您尚未设置窗口活动背景色,仅设置了活动面板边框,请尝试:

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

仍然是相同的- i.imgur.com/3AdyVZc.png
尼卡比曹

是的,我保存~/.tmux.conftmux在新的终端中启动。
尼卡比曹

xterm-256color
尼卡比曹

1
此外,对于那些想知道的人,可以使用set-window-option -g window-status-current-fg 'white'
laurent 17'Nov

2
如果您正在看这篇tmux v2.9的帖子,这个选项应该像这样set-window-option -g window-status-current-style bg=red
AntK

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.