Providers never returned JSON rows: they are shell-defined row sources emitting tab-delimited lines, and extensions cannot declare new names. bar.shellQuote moved to Util.qml, and the UpperCamelCase widget id migration no longer exists. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
31 lines
1.5 KiB
JSON
31 lines
1.5 KiB
JSON
{
|
|
// Extend the Quickshell Omarchy menu with JSONC.
|
|
//
|
|
// IDs are object keys. The parent is inferred from the dotted id, so
|
|
// "personal.notes" appears under "personal", and "personal" appears on the
|
|
// root menu. Reuse an existing id to override/extend it.
|
|
//
|
|
// Fields:
|
|
// icon Nerd Font glyph shown in the icon column.
|
|
// label Visible row title.
|
|
// action Shell command to run. If omitted, the row is a submenu.
|
|
// target Existing submenu id to open. Use for links/aliases.
|
|
// provider Name of a shell-defined runtime row source (e.g. "fonts").
|
|
// aliases alternate `omarchy menu summon <name>` routes; also searchable.
|
|
// description Optional subtitle and extra search text.
|
|
// when Shell condition; hide row when it fails.
|
|
// checked Shell condition; append ✓ when it succeeds.
|
|
//
|
|
// Examples:
|
|
// "personal": {"icon":"","label":"Personal"},
|
|
// "personal.notes": {"icon":"","label":"Notes","action":"omarchy-launch-editor ~/notes"},
|
|
// "personal.files": {"icon":"","label":"Files","action":"uwsm-app -- nautilus ~/Documents"},
|
|
//
|
|
// provider can only reference row sources the shell already defines (the
|
|
// providers map in Menu.qml). Static submenus only need dotted ids.
|
|
//
|
|
// Example: replace the default About action by reusing the same id. Existing
|
|
// fields are kept unless overridden.
|
|
// "about": {"icon":"","label":"About","action":"omarchy-launch-or-focus-tui \"zsh -c 'fastfetch; read -k 1'\""},
|
|
}
|