Skip to content

Instantly share code, notes, and snippets.

@RobinBoers
Created July 4, 2024 18:34
Show Gist options
  • Save RobinBoers/2cad075befabc774cdcd204382b128f9 to your computer and use it in GitHub Desktop.
Save RobinBoers/2cad075befabc774cdcd204382b128f9 to your computer and use it in GitHub Desktop.
Option+Return launches Alacritty
{
"description": "Option+Return launches Alacritty",
"manipulators": [
{
"from": {
"key_code": "return_or_enter",
"modifiers": {
"mandatory": [
"left_option"
],
"optional": [
"any"
]
}
},
"to": [
{
"shell_command": "open -na 'Alacritty.app'"
}
],
"type": "basic"
},
{
"from": {
"key_code": "return_or_enter",
"modifiers": {
"mandatory": [
"right_option"
],
"optional": [
"any"
]
}
},
"to": [
{
"shell_command": "open -na 'Alacritty.app'"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment