Simple shortcut manager for macOS 13 or higher. It lets you execute any command that works in your terminal by pressing a combination of keyboard keys. No rocket science involved!
Stable release — download from the Releases page, or install via Homebrew:
brew install icanhazshortcutDev build — compiled from the master branch: download
(only use this if you need unreleased functionality or want to help with testing)
list/listJSON— list all shortcuts as TSV or JSONenable/disable/toggle/trigger— control a shortcut by its key combination (e.g."⇧⌘L")enableAction/disableAction/toggleAction/triggerAction— control a shortcut by its action name (e.g."lock screen")enableID/disableID/toggleID/triggerID— control a shortcut by its ID (e.g."a1b2c3d4e5")
Note
Since v2.0.0, shortcut IDs are string-based (derived from action and command) and are not compatible with the numeric IDs used in v1.x.
Examples:
tell application "iCanHazShortcut" to list
tell application "iCanHazShortcut" to enable "⇧⌘L"
tell application "iCanHazShortcut" to disableAction "lock screen"
tell application "iCanHazShortcut" to toggleID "a1b2c3d4e5"
tell application "iCanHazShortcut" to triggerAction "lock screen"
tell application "iCanHazShortcut" to listJSON- Config is stored in TOML format at
~/Library/Application Support/iCanHazShortcut/ichs-config.toml - A backup is created automatically before every config change (up to 30 backups are kept in the
backups/subdirectory) - When upgrading from v1.x, the app will offer to migrate your old INI config (
~/.config/iCanHazShortcut/config.ini) to the new format
- Install Xcode command line tools:
xcode-select --install - Clone the repo
- Run the build script:
./build.sh # debug build (default)
./build.sh release # release build with signing & notarizationFor code signing and notarization, copy .env.example to .env and fill in the required variables.
- File an issue for bugs, suggestions, or questions
- Reddit: https://www.reddit.com/r/iCanHazApps
- Telegram: https://t.me/icanhazshortcut
