5

This is currently what my tmux pane borders look like: enter image description here

This is multiple terminals open in i3 (what I would like to have it look like in tmux): enter image description here

Is it possible to just make the pane borders invisible? I tried setting set -g pane-border-status off in tmux.conf, but that did not make any difference.

1 Answers1

1
set-window-option -g pane-border-status off

Now works as expected. One benefit: when I set both,

set-option -g status off

If I do not turn off the border and place it at the bottom of the pane, the command prompt mode will not work properly. Those who share my confusion may find a way around the conflict here. Possible conflicts between the status bar, border, and command prompt mode have been avoided for the time being.

Hugh
  • 11
  • 2