Last active
March 6, 2024 21:39
-
-
Save rszyma/dea3de8a6013070bba9cfeabf24e1fce to your computer and use it in GitHub Desktop.
kanata-tray config.toml schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"definitions": { | |
"preset": { | |
"type": "object", | |
"properties": { | |
"kanata_executable": { | |
"type": "string", | |
"description": "A path to a kanata executable." | |
}, | |
"kanata_config": { | |
"type": "string", | |
"description": "A path to a kanata configuration file. It will be passed as `--cfg=<value>` arg to kanata." | |
}, | |
"autorun": { | |
"type": "boolean", | |
"description": "Whether the preset will be automatically ran at kanata-tray startup." | |
}, | |
"tcp_port": { | |
"type": "integer", | |
"description": "A TCP port number. This should generally be between 1000 and 65535. It will be passed as `--port=<value>` arg to kanata." | |
}, | |
"layer_icons": { | |
"type": "object", | |
"additionalProperties": { | |
"type": "string", | |
"description": "A layer name to icon path mapping." | |
}, | |
"description": "An array of layer name to icon path mappings." | |
}, | |
"extra_args": { | |
"type": "string", | |
"description": "You may pass extra arguments to kanata here. Don't pass `--port` and `--cfg` arguments here, they are already passed automatically." | |
} | |
}, | |
"additionalProperties": false, | |
"description": "Preset defines the settings that kanata will be ran with when the preset gets selected in kanata-tray menu." | |
} | |
}, | |
"type": "object", | |
"properties": { | |
"$schema": { | |
"type": "string" | |
}, | |
"general": { | |
"type": "object", | |
"properties": { | |
"allow_concurrent_presets": { | |
"type": "boolean", | |
"description": "Toggle for running presets concurrently or stopping before switching to a new one." | |
} | |
}, | |
"additionalProperties": false, | |
"description": "Options that apply to kanata-tray behavior in general." | |
}, | |
"defaults": { | |
"$ref": "#/definitions/preset", | |
"description": "You can override default preset fields here." | |
}, | |
"presets": { | |
"type": "object", | |
"additionalProperties": { | |
"$ref": "#/definitions/preset" | |
}, | |
"description": "Defines presets that will be available in kanata-tray menu." | |
} | |
}, | |
"additionalProperties": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment