Skip to content

Instantly share code, notes, and snippets.

@RobinBoers
Created August 12, 2024 08:23
Show Gist options
  • Save RobinBoers/e7ab0842d4cccfeafd9e7d7b23036e11 to your computer and use it in GitHub Desktop.
Save RobinBoers/e7ab0842d4cccfeafd9e7d7b23036e11 to your computer and use it in GitHub Desktop.
Karabinder rule to make option launch Spotlight, ala Windows.
{
"description": "Option launches Spotlight",
"manipulators": [
{
"from": {
"key_code": "left_option",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "left_option" }],
"to_if_alone": [
{
"key_code": "spacebar",
"modifiers": ["left_command"]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment