Skip to content

Instantly share code, notes, and snippets.

@kondanta
Created October 23, 2019 08:23
Show Gist options
  • Save kondanta/0bf8ed9cfd2477287e1d360945475ee4 to your computer and use it in GitHub Desktop.
Save kondanta/0bf8ed9cfd2477287e1d360945475ee4 to your computer and use it in GitHub Desktop.
macOS karabiner custom keyboard shortcut to open iTerm
"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