From e8d7ab8f1519574a5e8a4ed959e2568a7d1743f9 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Sun, 15 Mar 2026 14:50:50 -0500 Subject: [PATCH] =?UTF-8?q?fix(cli):=20rearrange=20footer=20=E2=80=94=20ga?= =?UTF-8?q?teway=20top-right,=20cwd=20on=20line=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. (blank) ··· Gateway: Connected 2. ~/path (branch) ··· Session: a1b2c3d4 3. ↑5k ↓72 $0.12 ··· (provider) model • thinking --- packages/cli/src/tui/components/bottom-bar.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/cli/src/tui/components/bottom-bar.tsx b/packages/cli/src/tui/components/bottom-bar.tsx index f7eac28..e9151a4 100644 --- a/packages/cli/src/tui/components/bottom-bar.tsx +++ b/packages/cli/src/tui/components/bottom-bar.tsx @@ -46,24 +46,24 @@ export function BottomBar({ return ( - {/* Line 1: path (branch) ····· Gateway: Status */} + {/* Line 1: blank ····· Gateway: Status */} - - {compactCwd(gitInfo.cwd)} - {gitInfo.branch && ({gitInfo.branch})} - + Gateway: {gatewayStatus} - {/* Line 2: token stats ····· session id */} + {/* Line 2: cwd (branch) ····· Session: id */} - + + {compactCwd(gitInfo.cwd)} + {gitInfo.branch && ({gitInfo.branch})} + - {conversationId ? `session: ${conversationId.slice(0, 8)}` : 'no session'} + {conversationId ? `Session: ${conversationId.slice(0, 8)}` : 'No session'}