Created
August 12, 2024 08:23
-
-
Save RobinBoers/e7ab0842d4cccfeafd9e7d7b23036e11 to your computer and use it in GitHub Desktop.
Karabinder rule to make option launch Spotlight, ala Windows.
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 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