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>
28 lines
721 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|