Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

pieces: move header count to right side to avoid HUD label overlap

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

authored by

Jeffrey Scudder
Claude Sonnet 4.6
and committed by
aa-bridge
d3e88f30 201d2ac9

+2 -1
+2 -1
system/public/aesthetic.computer/disks/pieces.mjs
··· 143 143 // Header (painted last to mask scroll) 144 144 ink(c.headerBg).box(0, 0, screen.width, HEADER_HEIGHT); 145 145 const countStr = `${items.length} recent`; 146 - ink(c.date).write(countStr, { x: LEFT_MARGIN, y: 3 }, undefined, undefined, false, COMPACT_FONT); 146 + const countW = countStr.length * COMPACT_CHAR_W; 147 + ink(c.date).write(countStr, { x: screen.width - countW - 4, y: 3 }, undefined, undefined, false, COMPACT_FONT); 147 148 } 148 149 149 150 function act({ event: e, screen, hud, piece, jump, needsPaint, beep }) {