SuperKMenu is a small macOS menu bar app plus Finder Sync extension for configurable Finder context menu actions.
It lets you add commands such as "Open in VS Code" or "Open in Terminal" to Finder's right-click menu. Actions run in the background through /bin/zsh -lc; the configuration window only appears when you launch the app directly or open it from the menu bar.
SuperKMenu started from a small frustration raised by K, a real friend from a WeChat group: the existing "super right-click" style tools were not flexible enough for quickly wiring up launch actions such as opening the current Finder folder in WezTerm.
The name is a nod to K and to the idea of a keyboard-like, configurable Finder menu: a small "super key" for launching the actions you actually use.
The goal is to keep that workflow direct: define a command, give it a menu title, enable it, and use it from Finder without building Automator services or digging through nested Services menus.
- Configurable Finder context menu actions
- JSON-backed config at
~/.super-k-menu/actions.json - Disabled example actions for VS Code and Terminal
- Menu bar controls for opening settings and restarting Finder
- Built-in diagnostics window with main app logs, Finder extension logs, and extension registration status
- One-click GitHub issue draft with recent diagnostics attached
- Finder menu action icons inferred from the target app, with optional overrides
- Customizable status bar icon through
statusBarIconPath - Finder extension config mirroring for reliable sandboxed reads
Download the latest unsigned zip from the GitHub Releases page, unzip it, and move SuperKMenu.app to /Applications.
Because this build is unsigned, macOS may block the first launch. Use right-click Open on SuperKMenu.app for the first launch if needed.
Then:
- Launch
SuperKMenu.app. - Enable
SuperKMenuFinderExtensionin System Settings if macOS has not enabled it automatically. - Enable the actions you want in SuperKMenu.
- Restart Finder from the menu bar app.
Launching SuperKMenu registers and enables its Finder extension. Quitting SuperKMenu disables/unregisters the Finder extension and restarts Finder, so SuperKMenu menu items are removed from Finder's context menu after the app exits.
User-editable configuration lives at:
~/.super-k-menu/actions.json
The app mirrors this file into the Finder extension container so the sandboxed extension can read the same configuration reliably.
The top-level JSON has:
actions: Finder menu actionsallowedFolders: folders tracked by the appstatusBarIconPath: optional path to a custom menu bar icon image
Each action supports:
id: stable action identifiertitle: text shown in Finder's context menucommand: shell command run through/bin/zsh -lcenabled: whether the action appears in FindericonPath: optional icon override. Usesf:<symbol-name>for a simple SF Symbol, or a local file path for a custom image/app icon.
Use {path} in a command to receive the current Finder folder path. If a file is selected, SuperKMenu passes the selected file's parent folder.
Example:
{
"actions": [
{
"id": "example-vscode",
"title": "Open in VS Code",
"command": "open -a \"Visual Studio Code\" {path}",
"enabled": false
},
{
"id": "example-terminal",
"title": "Open in Terminal",
"command": "open -a Terminal {path}",
"enabled": false
}
],
"allowedFolders": [],
"statusBarIconPath": null
}iconPath is optional. If it is empty, SuperKMenu tries to infer the target app from the command or title and uses that app's icon. If no target app can be found, it falls back to a compact symbol.
Use the menu bar icon and choose View Logs to inspect:
- Main app log:
/tmp/superkmenu-main.log - Finder extension log:
~/Library/Containers/com.chenwencheng.SuperKMenu.FinderExtension/Data/Library/Application Support/SuperKMenu/finder-extension.log - Current
pluginkitregistration status - Public and mirrored action configuration
Choose Report Issue with Logs to open a prefilled GitHub issue draft with recent diagnostics.
For reproducing a fresh install state locally:
./Scripts/clean-local-state.shThis stops SuperKMenu, disables/unregisters the Finder extension, removes /Applications/SuperKMenu.app, deletes local SuperKMenu config/log files, and restarts Finder.
./Scripts/package-app.shThe packaged app is written to:
dist/SuperKMenu.app
Releases are built by GitHub Actions when a v* tag is pushed:
git tag v0.1.0
git push origin v0.1.0The workflow builds an unsigned macOS app and uploads SuperKMenu-<tag>-unsigned.zip to the GitHub release.
MIT