Add public-safe example config

This commit is contained in:
Ray Berezowski
2026-06-02 18:09:57 -04:00
parent 332b796258
commit d328c38f31
6 changed files with 74 additions and 3 deletions

53
config.example.json Normal file
View File

@@ -0,0 +1,53 @@
{
"Hotkey": "Ctrl+Alt+Space",
"DisplayMode": "CompactList",
"Items": [
{
"Title": "Folders",
"Type": "Menu",
"Target": "",
"Arguments": null,
"IconPath": null,
"DisplayMode": "CompactList",
"Children": [
{
"Title": "Documents",
"Type": "Folder",
"Target": "%USERPROFILE%\\Documents",
"Arguments": null,
"IconPath": "%USERPROFILE%\\Documents",
"DisplayMode": "CompactList",
"Children": []
},
{
"Title": "Downloads",
"Type": "Folder",
"Target": "%USERPROFILE%\\Downloads",
"Arguments": null,
"IconPath": "%USERPROFILE%\\Downloads",
"DisplayMode": "CompactList",
"Children": []
}
]
},
{
"Title": "Apps",
"Type": "Menu",
"Target": "",
"Arguments": null,
"IconPath": null,
"DisplayMode": "CompactList",
"Children": [
{
"Title": "Notepad",
"Type": "App",
"Target": "notepad.exe",
"Arguments": null,
"IconPath": "notepad.exe",
"DisplayMode": "CompactList",
"Children": []
}
]
}
]
}