zot/examples/theme/custom-spinner.json
patriceckhart dfd25012b6 Add JSON theming, theme-only extensions, and docs
- User themes from $ZOT_HOME/themes/*.json with partial overrides
  (colors, syntax, spinner) and dark/light fallback.
- /settings color-theme picker; selection persisted in config.json.
- Theme-only extensions: extension.json plus theme.json (or
  themes/theme.json) load without spawning a subprocess.
- write-zot-themes built-in skill and docs/themes.md.
- README, extensions docs, and embedded docs index updated.
2026-05-30 11:34:42 +02:00

22 lines
429 B
JSON

{
"name": "custom-spinner",
"description": "An alternative spinner for zot that only displays a single spinner text.",
"colors": {
"dark": {
"spinner_frames": [
"\u28FE",
"\u28FD",
"\u28FB",
"\u28BF",
"\u287F",
"\u28DF",
"\u28EF",
"\u28F7"
],
"spinner_messages": [
"working"
],
"spinner_interval_ms": 120
}
}
}