Files
omarchy-key-visualizer/manifest.json
T
felixzsh 5670aca888 Move config out of the plugin dir so edits don't reload the plugin
The shell watches every file under ~/.config/omarchy/plugins/ with
inotify (no extension filter) and reloads all plugin code on any change,
so config.json there made every edit tear down and rebuild the panel and
bar widget. Config now lives at ~/.config/omarchy/key-visualizer.json, which
is not watched: edits update the display live. The panel migrates the
old plugin-dir config (values carried over, file removed) on first load
after the update.
2026-08-11 13:42:24 -05:00

24 lines
582 B
JSON

{
"schemaVersion": 1,
"id": "felixzsh.key-visualizer",
"name": "Key Visualizer",
"version": "1.3.1",
"description": "Shows the keys you press on screen. Great for keybinding tutorials, demos, and screencasts.",
"kinds": [
"panel",
"bar-widget"
],
"keepLoaded": true,
"entryPoints": {
"panel": "KeyVisualizer.qml",
"barWidget": "Panel.qml"
},
"barWidget": {
"displayName": "Key Visualizer",
"description": "Toggle the key display and its options",
"category": "Tools",
"allowMultiple": false,
"defaultSection": "right"
}
}