Skip to content

Commit 1db245c

Browse files
hyperpolymathclaude
andcommitted
fix(coord-tui): drop "coord-tui [" prefix — title = peer_id exactly
Window title now matches the peer_id column in the TUI 1:1 so users running multiple windows can map titles to table rows without parsing a prefix. Pairs with the coord-hooks.sh change that does the same for shell-launched claude/gemini/cursor/codex windows and adds the new BOJ_SUPERVISOR=1 env-var hook for a distinct supervisor background. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f32fa44 commit 1db245c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

coord-tui/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ impl App {
174174
self.token = v["token"].as_str().map(String::from);
175175
let id = self.peer_id.as_deref().unwrap_or("?");
176176
self.msg = format!("registered as {}", id);
177-
let _ = execute!(std::io::stdout(), SetTitle(format!("coord-tui [{}]", id)));
177+
// Title = peer_id exactly so it 1:1-matches the table column.
178+
let _ = execute!(std::io::stdout(), SetTitle(id.to_string()));
178179
self.refresh();
179180
}
180181
Ok(v) => self.msg = format!("register failed: {}", str_field(&v, "error")),

0 commit comments

Comments
 (0)