From b701e4d3263c1ef1085ef52461f0ea7aec50db3f Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Wed, 30 Jul 2025 23:04:36 +0200 Subject: [PATCH] Fix tmux status bar time display symmetry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add leading space before time format to ensure symmetric display. Now shows [ 23:02 ] when prefix is inactive and [ 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 --- modules/tmux.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tmux.nix b/modules/tmux.nix index b926c7c..13bed5f 100644 --- a/modules/tmux.nix +++ b/modules/tmux.nix @@ -37,7 +37,7 @@ set -g status-left-length 40 set -g status-right-length 30 set -g status-left ' #S ' - set -g status-right '#{?client_prefix,#[reverse]#[noreverse] ,}%H:%M ' + set -g status-right '#{?client_prefix,#[reverse]#[noreverse] ,} %H:%M ' # Window status format set -g window-status-format ' #I:#W '