Commit 28e87da31bc7

Vincent Demeester <vincent@sbr.pm>
2026-03-09 16:52:31
feat(tmux): added per-pane title display in borders
Enabled pane-border-status at top with title format and added <prefix> N keybinding to rename panes interactively.
1 parent 07d61f2
Changed files (1)
home
common
shell
home/common/shell/tmux/tmux.conf
@@ -192,6 +192,13 @@ set-option -g status-right '#[fg=yellow]%Y-%m-%d %H:%M '
 set -g pane-border-style fg=brightblack
 set -g pane-active-border-style fg=blue
 
+# Pane titles (shown in border)
+set -g pane-border-status top
+set -g pane-border-format " #P: #{pane_title} "
+
+# Set pane title with <prefix> N
+bind N command-prompt -p "Pane title:" "select-pane -T '%%'"
+
 # ============================================================================
 # NOTIFICATIONS AND MONITORING
 # ============================================================================