I have a tmux window where I show 3 panes:
- remote_development (yeah I know it's weird)
- quality_assurance
- production
I would like to format the pane titles like so:
- dark green background with white text
- yellow background with black text
- dark red background with white text
I can change the colors, but no matter what I've tried, it applies to all pane borders & titles. Is there any way in any current versions of tmux to set the color only of a specific pane border & title?
For example, each of these lines sets the pane border format
tmux set pane-border-format '#[fg=brightwhite#, bg=darkgreen] #W [#{pane_index}] → #{pane_title} ' tmux set pane-border-format '#[fg=black#, bg=yellow] #W [#{pane_index}] → #{pane_title} ' tmux set pane-border-format '#[fg=white#,bg=darkred] #W [#{pane_index}] → #{pane_title} ' but each line changes all of them. Using -t doesn't seem to make any difference.