Created
April 19, 2020 17:48
-
-
Save lidopaglia/b1ece4b03dd6e203472be02c42fbd62c to your computer and use it in GitHub Desktop.
example rule for opening iTerm2 with command+shift+t with Karabiner Elements
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
# 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