Skip to content

Instantly share code, notes, and snippets.

@womchik
Last active August 12, 2020 08:08
Show Gist options
  • Save womchik/f184f79153b2ad9b54c08371e7ebba4a to your computer and use it in GitHub Desktop.
Save womchik/f184f79153b2ad9b54c08371e7ebba4a to your computer and use it in GitHub Desktop.
{
"title": "Launch apps",
"rules": [
{
"description": "Launch apps by left control+option+letters.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "e",
"modifiers": {
"mandatory": [
"left_control",
"left_option"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"shell_command": "open '/Applications/VSCodium.app'"
}
]
},
{
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_control",
"left_option"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"shell_command": "open ~"
}
]
},
{
"type": "basic",
"from": {
"key_code": "m",
"modifiers": {
"mandatory": [
"left_control",
"left_option"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"shell_command": "open '/Applications/Firefox.app'"
}
]
},
{
"type": "basic",
"from": {
"key_code": "j",
"modifiers": {
"mandatory": [
"left_control",
"left_option"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"shell_command": "open '/Applications/PyCharm.app'"
}
]
},
{
"type": "basic",
"from": {
"key_code": "t",
"modifiers": {
"mandatory": [
"left_control",
"left_option"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"shell_command": "open '/Applications/iTerm.app'"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment