Created
May 30, 2023 09:48
-
-
Save devgru/d6cdb2feb746dd1cde0c9a26660c5e18 to your computer and use it in GitHub Desktop.
example karabiner app runner, put into .config/karabiner/assets/complex_modifications/
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
{ | |
"title": "Run apps", | |
"rules": [ | |
{ | |
"description": "Run Safari", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "left_command", | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_command" | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"shell_command": "open -a 'Safari.app'" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment