feat(tmux): move */- session and window prefix before indicator
Some checks are pending
quality / changes (push) Waiting to run
quality / Nix Format Check (push) Blocked by required conditions
quality / Deadnix Check (push) Blocked by required conditions
quality / Statix Check (push) Blocked by required conditions
quality / Lua Format Check (push) Blocked by required conditions
quality / Lua Lint Check (push) Blocked by required conditions
quality / Prettier Format Check (push) Blocked by required conditions

This commit is contained in:
Barrett Ruth 2026-03-16 18:06:19 -04:00
parent 3329bafb65
commit 44641ca4ae
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
3 changed files with 6 additions and 6 deletions

View file

@ -114,15 +114,15 @@ bar)
fi
star="#{?#{==:#S,$sname},*,}"
[ -n "$bar_content" ] && bar_content="$bar_content │ "
bar_content="$bar_content#[range=session|${sid}]$key:$sname$star#[norange]"
bar_content="$bar_content#[range=session|${sid}]${star}$key:$sname#[norange]"
i=$((i + 1))
done
set +f
tmux set -g status-left-length 80
tmux set -g status-right-length 80
tmux set -g status-left ' '
tmux set -g window-status-format '#[range=window|#{window_index}]#{window_index}:#{window_name}#{window_flags}#[norange]'
tmux set -g window-status-current-format '#[range=window|#{window_index}]#{window_index}:#{window_name}#{window_flags}#[norange]'
tmux set -g window-status-format '#[range=window|#{window_index}]#{?window_last_flag,-,}#{window_index}:#{window_name}#[norange]'
tmux set -g window-status-current-format '#[range=window|#{window_index}]*#{window_index}:#{window_name}#[norange]'
tmux set -g window-status-separator ' │ '
tmux set -g @bar-content "$indicator $bar_content "
;;