understatus
A calm, unobtrusive statusline addon for Claude Code — live CPU, memory, battery, disk, network, and AI session info in a permanent bottom bar that stays out of your way.

Why
Most statusline widgets are noisy. understatus is designed around one principle: permanent visibility without distraction.
- Calm glyph theme — load stages render as
○ ▁ ▄ ▆ ◆. Color touches the glyph only; numeric values stay uncolored. Labels and separators are dimmed. At ≥90% CPU the critical glyph◆breathes slowly in restrained terracotta (#b87848↔#7a5030) — not red, not flashing. - Reactive CPU — every render takes two snapshots ~25 ms apart and computes true instantaneous CPU% across all cores. No stale load-average guessing.
- Non-destructive chaining —
understatus installdetects your existingstatusLine.command, preserves it in config, and chains it.uninstallrestores byte-for-byte. Your current setup is never lost.
macOS only. Apple Silicon (arm64) + Intel (x86_64). Linux is not supported.
Install
Homebrew (recommended)
The formula lives in the tap
ictechgy/understatus(repo:ictechgy/homebrew-understatus).
Cargo
Requires Rust 1.75+.
npm
The npm package shells out to the prebuilt macOS binary for your architecture (arm64 / x64). macOS only.
From source
# binary at ./target/release/understatus
Setup
Install into Claude Code
This patches ~/.claude/settings.json non-destructively:
- Reads your current
statusLine.command(if any). - Saves it as
chain_commandin~/.config/understatus/config.toml. - Replaces
statusLine.commandwith the understatus binary path. - Injects
"refreshInterval": Nintosettings.jsonand mirrors the same value toconfig.toml [refresh].interval_seconds.
Flags:
| Flag | Description |
|---|---|
--interval N |
Set refresh interval in seconds (integer ≥ 1). |
--theme NAME |
Set the theme (see Themes for valid names). |
--yes / -y |
Skip interactive prompts even in a TTY; use flags / inherited / default values. |
Interactive prompts (TTY only, without --yes): If a flag is omitted and stdin is a TTY, install asks for each missing value (up to 3 retries per item). Empty input accepts the inherited or default value.
Interval inheritance on reinstall: When --interval is not supplied, the existing [refresh].interval_seconds from config.toml is reused. Priority: --interval flag > existing config value > default (5 s). This prevents the interval from silently resetting to 5 when you reinstall to change only the theme.
Uninstall
Restores statusLine.command and refreshInterval to their exact pre-install state. If refreshInterval was absent before install, the key is deleted.
⚠️ Global side-effect: refreshInterval
understatus install writes "refreshInterval": N into settings.json (default N = 5). This value applies to the entire statusLine subsystem — not just understatus:
- understatus itself spawns as a new process every N seconds.
- Any chained command (e.g.
lterm-omc-hud.mjs) is also re-executed every N seconds.
To decouple heavy chain children, understatus caches their stdout via chain_cache_ttl_seconds (default 10 s). The chained child re-spawns at most once per TTL — not every N seconds.
To save battery on laptops, raise the interval:
# ~/.config/understatus/config.toml
[]
= 10 # default: 5
Note: increasing interval_seconds proportionally slows the terracotta breath animation. Adjust pulse_period_seconds accordingly to keep it smooth (pulse_period / interval >= 6). If pulse_period / interval < 6 at install time, understatus prints a warning to stderr.
understatus uninstall reverts refreshInterval precisely — no residue left behind.
Themes
understatus ships five built-in themes. Set the active theme in one line:
# ~/.config/understatus/config.toml
= "vivid"
Or switch after install without reinstalling:
Theme table
| Name | Glyph ramp (idle → crit) | Description |
|---|---|---|
calm |
○ ▁ ▄ ▆ ◆ |
Cool blue-grey ladder + terracotta breath at critical. Default. |
mono |
○ ▁ ▄ ▆ ◆ |
Greyscale only — zero hue across all bands. |
vivid |
░ ▒ ▓ █ █ |
Traffic-light colors (green → amber → red) with block-fill glyphs. |
ember |
· ∙ • ● ◉ |
Warm amber/terracotta monochromatic ladder with dot glyphs. |
emoji |
😌 🙂 😅 🥵 🔥 |
Emoji face ramp. Each glyph occupies 2 terminal columns. |
COLOR-ONCE principle: Color is applied to the glyph character only. Numeric values (CPU%, memory, cost, etc.) are always uncolored regardless of theme.
Critical breath (≥90% CPU): The critical-band glyph breathes between pulse_palette[0] (bright) and pulse_palette[1] (dim) over pulse_period_seconds. Hue never shifts — only brightness. The animation requires at least 6 render frames per period (pulse_period / interval_seconds >= 6); if this is not satisfied, install prints a warning.
Per-key override: theme fills only the keys not explicitly set in your config. Any of the eight theme-owned keys (load_glyphs, band_tints, pulse_palette, label_color, separator, separator_color, hud_seam, pulse_style) written in your config take precedence over the preset.
Configuration
File: ~/.config/understatus/config.toml
All keys are optional; omitting a key uses its default.
| Key | Default | Description |
|---|---|---|
theme |
"calm" |
Active theme preset. Valid values: calm, mono, vivid, ember, emoji. The theme fills all eight visual keys not explicitly set in config; individual keys can still override it. |
[cpu] sample_window_ms |
25 |
Interval (ms) between the two CPU snapshots. Larger = less noise, more latency. |
[cpu] load_glyphs |
["○","▁","▄","▆","◆"] |
Glyphs for idle→critical load stages. Color is applied to the glyph only. Filled by the active theme; override by writing this key explicitly. |
[pulse] pulse_on_threshold |
90 |
CPU% at which the critical glyph starts breathing. |
[pulse] pulse_off_threshold |
80 |
CPU% below which the breath turns off (hysteresis). |
[pulse] pulse_period_seconds |
30 |
One full breath cycle in seconds. Keep period / interval_seconds >= 6 for smooth animation. |
[pulse] pulse_style |
"calm" |
"calm" = fixed glyph shape + terracotta brightness breath (hue never changes). "bold" = legacy style. |
[chain] chain_command |
"" |
Populated by install. The command that runs alongside understatus. |
[chain] order |
"self_first" |
"self_first" or "chain_first" — which output appears on the left. |
[chain] chain_cache_ttl_seconds |
10 |
How long (s) to cache the chained command's stdout before re-spawning it. |
[chain] chain_timeout_ms |
500 |
Max ms to wait for the chained command. On timeout, cached or empty output is used. |
[display] max_width |
80 |
Maximum character width. Lower-priority segments are omitted when exceeded. |
[display] show_model |
true |
Show Claude model name. |
[display] show_cost |
true |
Show cumulative session cost. |
[display] show_context |
true |
Show context usage %. Omitted automatically when null. |
[display] show_git |
true |
Show git branch (derived from workspace.git_worktree / repo). |
[display] show_battery |
true |
Show battery (IOKit, 30 s TTL cache). Silently omitted on desktops. |
[display] show_disk |
true |
Show disk usage via statfs("/"). |
[display] show_network |
true |
Show network throughput (getifaddrs counter delta). First render has no delta — omitted silently. |
[color] mode |
"auto" |
"auto" | "truecolor" | "256" | "none". Respects NO_COLOR. |
[color] band_tints |
see below | Five hex colors for idle→critical glyph tint. Filled by the active theme; override by writing this key explicitly. |
[color] pulse_palette |
["#b87848","#7a5030"] |
High/low brightness endpoints for the breath animation. Filled by the active theme; override by writing this key explicitly. |
[color] label_color |
"#6b7280" |
Dimmed color for labels, units, arrows, and git marker. |
[color] separator |
" · " |
Segment separator string. |
[color] separator_color |
"#3b4048" |
Color for separator and HUD seam. |
[color] hud_seam |
"│" |
Character placed between understatus output and the chained command output. |
[refresh] interval_seconds |
5 |
Value written to settings.json as refreshInterval. Set via install --interval or the interactive prompt. On reinstall the existing value is inherited unless --interval overrides it. ⚠️ Global side-effect — see above. |
Default band_tints (cool blue-grey brightness ladder, warm terracotta only at critical):
= ["#5a6878", "#6d8296", "#86a0b4", "#9fbfce", "#b87848"]
How it works
Claude Code (every refreshInterval seconds)
│ stdin: one JSON line
▼
understatus binary (new process per call — no daemon, no state files, no locks)
├─ parse stdin → ClaudeInput (session_id extracted here)
├─ double-sample CPU → cpu_percent (0–100%, average across all cores)
│ on failure → loadavg fallback: min(load1 / ncpu × 100, 100)
├─ memory (host_statistics64)
├─ battery (IOKit, 30 s TTL cache) ← machine-global; omitted on desktops
├─ disk (statfs("/"))
├─ network (getifaddrs counter delta) ← omitted on first render
├─ glyph + band tint (color on glyph only, theme-driven)
│ at ≥90% CPU → brightness breath on the critical-band glyph
├─ chain_command child (TTL cache + 500 ms timeout)
└─ compose → stdout (single newline)
CPU measurement: Two /proc-equivalent snapshots are taken ~25 ms apart within the same process invocation. The delta gives true instantaneous utilization — not a smoothed load average. If the syscall fails (rare), loadavg serves as a silent fallback.
Glyph + tint design (COLOR-ONCE): band_tints[0..3] are cool blue-grey values of increasing brightness (idle to high load). band_tints[4] is the lone warm color — terracotta — reserved for the critical stage. Only the glyph character receives color; all numeric values and labels stay uncolored. The active theme fills these colors; individual config keys override the preset.
Terracotta breath: When CPU stays at ≥90%, the critical-band glyph cycles between pulse_palette[0] (brighter) and pulse_palette[1] (dimmer) over pulse_period_seconds. Hue never shifts — only brightness. This is the "calm" pulse style. Smooth animation requires pulse_period / interval_seconds >= 6 (6 or more render frames per cycle).
Session cache isolation: Per-render caches (chain command output, pulse state, network counter delta) are keyed by session_id. Multiple terminal windows running understatus simultaneously do not share or corrupt each other's cached values. Battery state is machine-global and is shared across sessions.
CLI Support Matrix
| CLI | Status | Notes |
|---|---|---|
| Claude Code | ✅ Full support | Custom statusLine.command, stdin JSON, refreshInterval (default 5 s) — all supported. |
| Gemini CLI | ⏳ Stub / forward-looking | /footer and /statusline expose built-in items only; custom commands not yet supported (open issue). |
| Codex CLI | ⏳ Stub / forward-looking | [tui].status_line is a fixed built-in; custom commands not yet supported (open issue). |
Gemini and Codex integration is documented and stubbed (CliAdapter trait planned) but not yet functional — those CLIs do not currently expose a custom statusline command hook.
Platform
- macOS only. Uses
host_processor_info,host_statistics64, andIOPSCopyPowerSourcesInfo— all macOS-specific APIs. - Apple Silicon (arm64) + Intel (x86_64). Tested on macOS arm64 with a 12-core Apple Silicon chip.
- Linux: builds may succeed, but CPU double-sampling degrades silently to loadavg fallback. Not a supported target.
- Rust edition 2021, MSRV 1.75+.
License
MIT — see LICENSE.
한국어 안내
macOS용 AI 코딩 CLI statusline 애드온입니다. CPU%, 메모리, 배터리, 디스크, 네트워크, AI 세션 정보(모델명·비용·컨텍스트)를 Claude Code 하단 표시줄에 조용하고 자연스럽게 표시합니다.
주요 특징
- 5종 테마 —
calm(기본),mono,vivid,ember,emoji. 테마는 8개 시각 키(글리프·색상 등)를 한 번에 설정하며, 개별 키를 config.toml에 명시하면 테마보다 우선합니다. - COLOR-ONCE 원칙 — 색은 글리프 문자에만 적용. 숫자 값(CPU%, 비용 등)은 항상 무색.
- ≥90% 호흡 — CPU가 90% 이상으로 유지되면 임계 밴드 글리프가 테라코타 명도로 천천히 숨쉽니다(hue 변화 없음). 부드러운 애니메이션에는
pulse_period / interval_seconds >= 6조건이 필요하며, 위반 시 설치 시점에 경고가 출력됩니다. - 반응형 CPU — 매 렌더마다 두 스냅샷(~25ms 간격) 직접 측정. loadavg 아님.
- 비파괴 설치 — 기존
statusLine.command를 체이닝으로 보존하고 정확히 복원. - 세션 캐시 격리 — 체인 출력·펄스 상태·네트워크 델타 캐시는
session_id별로 분리되어 여러 터미널을 동시에 열어도 값이 섞이지 않습니다. 배터리는 머신 전역.
설치
# Homebrew
# Cargo
# npm
Claude Code에 적용
--interval/--theme 미지정 + TTY 환경이면 각 항목을 대화형으로 묻습니다. --yes(또는 비TTY)이면 플래그·기존값·기본값을 그대로 사용합니다. 재설치 시 --interval을 지정하지 않으면 기존 config.toml의 interval이 그대로 승계됩니다(기본 5초로 초기화되지 않습니다).
⚠️
install은settings.json에"refreshInterval": N을 전역 주입합니다. 체이닝된 기존 명령도 N초마다 재실행 대상이 됩니다. 배터리 절약이 필요하면config.toml에서interval_seconds = 10으로 올리세요.
테마 관리
| 이름 | 글리프 램프 (idle → crit) | 설명 |
|---|---|---|
calm |
○ ▁ ▄ ▆ ◆ |
차가운 blue-grey + 테라코타 호흡 (기본) |
mono |
○ ▁ ▄ ▆ ◆ |
무채색, 제로 색상 |
vivid |
░ ▒ ▓ █ █ |
신호등 색 + 블록 글리프 |
ember |
· ∙ • ● ◉ |
따뜻한 앰버/테라코타 단색 + 도트 글리프 |
emoji |
😌 🙂 😅 🥵 🔥 |
이모지 표정 램프 (각 글리프 2칸 폭) |
설정 파일: ~/.config/understatus/config.toml (없으면 모두 기본값)
= "vivid" # 한 줄로 테마 지정; 개별 키 override 가능
macOS 전용 · Apple Silicon(arm64) + Intel(x86_64) · Rust 1.75+ · MIT 라이선스