diff --git a/apps/ccusage/src/_live-rendering.ts b/apps/ccusage/src/_live-rendering.ts index 5426c2f4..587d4c8c 100644 --- a/apps/ccusage/src/_live-rendering.ts +++ b/apps/ccusage/src/_live-rendering.ts @@ -187,9 +187,11 @@ export function renderLiveDisplay(terminal: TerminalManager, block: SessionBlock const detailsSpacing = 2; // Fixed spacing between columns const detailsAvailableWidth = boxWidth - 3 - detailsIndent; // Available width for content - // Draw header + // Draw header with deprecation warning terminal.write(`${marginStr}┌${'─'.repeat(boxWidth - 2)}┐\n`); terminal.write(`${marginStr}│${pc.bold(centerText('CLAUDE CODE - LIVE TOKEN USAGE MONITOR', boxWidth - 2))}│\n`); + terminal.write(`${marginStr}│${pc.yellow(centerText('⚠️ DEPRECATED - Will be removed in next major version', boxWidth - 2))}│\n`); + terminal.write(`${marginStr}│${pc.gray(centerText('Use https://claude.ai/settings/usage instead', boxWidth - 2))}│\n`); terminal.write(`${marginStr}├${'─'.repeat(boxWidth - 2)}┤\n`); terminal.write(`${marginStr}│${' '.repeat(boxWidth - 2)}│\n`);