Created
August 9, 2024 19:06
-
-
Save RobinBoers/c6aac1e9cf8ec4fa37068f7ca9be6071 to your computer and use it in GitHub Desktop.
Karabinder Elements rule for launching iTerm on MacOS on Option+Enter
This file contains 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
{ | |
"description": "option+t launches alacritty", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "return_or_enter", | |
"modifiers": { "mandatory": ["left_option"] } | |
}, | |
"to": [{ "shell_command": "osascript -e 'tell app \"iTerm2\"' -e 'create window with default profile' -e activate -e end" }], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment