Last active
February 11, 2023 08:25
-
-
Save anaclumos/4aa07e05f6377e18846d1a79cbbd597e to your computer and use it in GitHub Desktop.
Use fn(globe) to control + command + space
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
{ | |
"title": "Use fn(globe) to control + command + space", | |
"rules": [ | |
{ | |
"description": "Use fn(globe) to control + command + space", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "fn" | |
}, | |
"to": [ | |
{ | |
"key_code": "spacebar", | |
"modifiers": [ | |
"left_control", | |
"left_command" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment