chore: auto-commit uncommitted changes

This commit is contained in:
James 2026-02-20 18:01:18 -05:00
parent 2e6ba63b8a
commit 6779363849
1 changed files with 6 additions and 6 deletions

View File

@ -25,11 +25,11 @@ canvas#clock { width: 180px; height: 180px; }
#weather-line { text-align: center; font-size: 14px; font-weight: 300; color: #bbb; margin-top: 4px; letter-spacing: 1px; }
#current-temp { font-size: 16px; font-weight: 600; color: #e0ddd5; }
#weather-line .wx-alert { color: #ff2222; font-weight: 600; }
#claude-usage { text-align: center; font-size: 14px; font-weight: 900; margin-top: 6px; letter-spacing: 1px; font-variant-numeric: tabular-nums; padding: 2px 8px; border-radius: 4px; }
#claude-usage.good { color: #000; background: #00ffff; }
#claude-usage.ok { color: #000; background: #ffff00; }
#claude-usage.warn { color: #000; background: #ff00ff; }
#claude-usage.crit { color: #fff; background: #ff0000; }
#claude-usage { text-align: center; font-size: 14px; font-weight: 900; margin-top: 6px; letter-spacing: 1px; font-variant-numeric: tabular-nums; padding: 2px 8px; }
#claude-usage.good { color: #00ffff; }
#claude-usage.ok { color: #ffff00; }
#claude-usage.warn { color: #ff00ff; }
#claude-usage.crit { color: #ff4444; }
#meeting-line { text-align: center; font-size: 13px; font-weight: 300; color: #bbb; margin-top: 8px; letter-spacing: 1px; }
#meeting-line.warning { color: #d4a050; }
#meeting-line.critical { color: #ff2222; animation: pulse 2s ease-in-out infinite; }
@ -449,7 +449,7 @@ async function updateClaudeUsage() {
const r = await fetch('/api/claude-usage');
const d = await r.json();
if (d.pace != null) {
el.textContent = ` ${d.pace}%`;
el.textContent = `pace ${d.pace}%`;
el.title = `Budget pace: ${d.timePct}% of week elapsed, ${d.usage}% used`;
// Color: <90 green, 90-100 white, >100 red
el.className = d.pace < 90 ? 'good' : d.pace <= 100 ? 'ok' : 'crit';