Skip to content

Instantly share code, notes, and snippets.

@lidopaglia
Created April 19, 2020 17:48
Show Gist options
  • Save lidopaglia/b1ece4b03dd6e203472be02c42fbd62c to your computer and use it in GitHub Desktop.
Save lidopaglia/b1ece4b03dd6e203472be02c42fbd62c to your computer and use it in GitHub Desktop.
example rule for opening iTerm2 with command+shift+t with Karabiner Elements
# https://karabiner-elements.pqrs.org/docs/json/location/
{
"title": "Launch apps",
"rules": [
{
"description": "Launch iTerm with command + shift + t",
"manipulators": [
{
"from": {
"key_code": "t",
"modifiers": {
"mandatory": [
"left_command",
"left_shift"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"shell_command": "open '/Applications/iTerm.app'"
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment