themes-terminal/schemas/ascii_header.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

30 lines
789 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ASCII Header",
"description": "TTY-style figlet banner with a prompt line",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"description": "Title shown in the banner (e.g. ~/projects)",
"default": "~/projects",
"x-editor": "text"
},
"prompt": {
"type": "string",
"title": "Prompt",
"description": "Shell prompt prefix (e.g. $ )",
"default": "$ ",
"x-editor": "text"
},
"asciiArt": {
"type": "string",
"title": "ASCII Art",
"description": "Optional pre-baked figlet block. Leave blank to use the auto-generated banner.",
"default": "",
"x-editor": "textarea"
}
}
}