Created
October 23, 2019 08:23
-
-
Save kondanta/0bf8ed9cfd2477287e1d360945475ee4 to your computer and use it in GitHub Desktop.
macOS karabiner custom keyboard shortcut to open iTerm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "rules": [ | |
| { | |
| "description": "Open iterm2", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "return_or_enter", | |
| "modifiers": { | |
| "mandatory": [ | |
| "command" | |
| ], | |
| "optional": [ | |
| "caps_lock" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "shell_command": "open -a 'iTerm.app'" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| ... | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment