From 03ba77c432c97181ee921e8ec2bbc08ebc13d04a Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Fri, 20 Mar 2026 06:07:26 +0000 Subject: feat: add a small atuin label to the ai box (#3309) ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing --- crates/atuin-ai/src/tui/render.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/atuin-ai/src/tui/render.rs b/crates/atuin-ai/src/tui/render.rs index 9b514ccf..e3801d6a 100644 --- a/crates/atuin-ai/src/tui/render.rs +++ b/crates/atuin-ai/src/tui/render.rs @@ -119,6 +119,7 @@ fn render_view(frame: &mut Frame, view: &Blocks, ctx: &RenderContext) { let mut outer_block = RatatuiBlock::default() .borders(Borders::ALL) .title(title) + .title_top(Line::from("atuin").alignment(Alignment::Right)) .title_bottom(Line::from(view.footer).alignment(Alignment::Right)) .padding(Padding::new(1, 1, 1, 0)); -- cgit v1.3.1