themes-terminal/schemas/boot_log.schema.json
Alex Dunmow 0a9b177f7c initial: theme plugin terminal
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/terminal.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:44 +08:00

28 lines
721 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Boot Log Hero",
"description": "Sequential dmesg-style boot log with trailing cursor",
"type": "object",
"properties": {
"lines": {
"type": "array",
"title": "Lines",
"description": "Boot log lines (one per entry, revealed sequentially)",
"default": [],
"x-editor": "array",
"items": {
"type": "string",
"x-editor": "text"
}
},
"cursor": {
"type": "string",
"title": "Cursor",
"description": "Trailing cursor glyph after the last line",
"default": "block",
"x-editor": "select",
"enum": ["block", "underscore", "pipe", "none"]
}
}
}