Skip to content

Commit 10977fc

Browse files
committed
update cat
1 parent 9619492 commit 10977fc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pi/extensions/custom-header.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -387,10 +387,10 @@ function renderTaglineLines(width: number, theme: Theme, colors: EffectiveHeader
387387
// ─── Cat ──────────────────────────────────────────────────────────────────────
388388

389389
const CAT = [" /l、 ", "(゚、 。7 ", " l ~ヽ ", " じしf_,)ノ"];
390-
const BUBBLE = [" ╭───", "╭───────┴─╮ ", "│ meow :3 │ ", "╰─────────╯ "];
390+
const BUBBLE = ["╭─────────", "│ meow :3 │", "╰────────"];
391391

392-
// Speech bubble to the left, cat to the right — same pairing as before.
393-
const CAT_PANEL = CAT.map((cat, i) => (BUBBLE[i] ?? "") + cat);
392+
// Bubble stacked above the cat.
393+
const CAT_PANEL = [...BUBBLE, ...CAT];
394394
const CAT_PANEL_WIDTH = Math.max(...CAT_PANEL.map((l) => visibleWidth(l)));
395395

396396
// ─── Layout ───────────────────────────────────────────────────────────────────

0 commit comments

Comments
 (0)