Fix tmux status bar time display symmetry
Add leading space before time format to ensure symmetric display. Now shows [ 23:02 ] when prefix is inactive and <Prefix>[ 23:02 ] when prefix is active, both properly centered in the status bar. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
4dffd92c1d
commit
b701e4d326
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@
|
||||||
set -g status-left-length 40
|
set -g status-left-length 40
|
||||||
set -g status-right-length 30
|
set -g status-right-length 30
|
||||||
set -g status-left ' #S '
|
set -g status-left ' #S '
|
||||||
set -g status-right '#{?client_prefix,#[reverse]<Prefix>#[noreverse] ,}%H:%M '
|
set -g status-right '#{?client_prefix,#[reverse]<Prefix>#[noreverse] ,} %H:%M '
|
||||||
|
|
||||||
# Window status format
|
# Window status format
|
||||||
set -g window-status-format ' #I:#W '
|
set -g window-status-format ' #I:#W '
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue