Skip to content

Instantly share code, notes, and snippets.

@RobinBoers
Created August 9, 2024 19:06
Show Gist options
  • Save RobinBoers/c6aac1e9cf8ec4fa37068f7ca9be6071 to your computer and use it in GitHub Desktop.
Save RobinBoers/c6aac1e9cf8ec4fa37068f7ca9be6071 to your computer and use it in GitHub Desktop.
Karabinder Elements rule for launching iTerm on MacOS on Option+Enter
{
"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