From 40cd8f332c910ad1f21b5692be6ee1fb760c36eb Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 24 Feb 2026 19:02:52 -0800 Subject: [PATCH] Update list status icons --- src/commands/list.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/list.ts b/src/commands/list.ts index 710c27c..8eab874 100644 --- a/src/commands/list.ts +++ b/src/commands/list.ts @@ -58,7 +58,7 @@ export async function action(opts: { json?: boolean }) { return } - const icons: Record = { idle: `${dim}◌${reset}`, active: `${cyan}◯${reset}`, dirty: `${yellow}◎${reset}`, saved: `${green}●${reset}` } + const icons: Record = { idle: `${dim}◯${reset}`, active: `${cyan}◎${reset}`, dirty: `${yellow}◐${reset}`, saved: `${green}●${reset}` } const branchColors: Record = { idle: dim, active: cyan, dirty: yellow, saved: green } const branchWidth = Math.max(6, ...sessions.map((s) => s.branch.length)) const cols = process.stdout.columns || 80 @@ -76,5 +76,5 @@ export async function action(opts: { json?: boolean }) { console.log(`${icon} ${bc}${s.branch.padEnd(branchWidth)}${reset} ${dim}${truncated}${reset}`) } - console.log(`\n${dim}◌ idle${reset} · ${cyan}◯ active${reset} · ${yellow}◎ unsaved${reset} · ${green}● saved${reset}`) + console.log(`\n${dim}◯ idle${reset} · ${cyan}◎ active${reset} · ${yellow}◐ unsaved${reset} · ${green}● saved${reset}`) }