Skip to content

Instantly share code, notes, and snippets.

@lushl9301
Created April 20, 2021 01:01
Show Gist options
  • Save lushl9301/db50082392cc9433ec051c2bf5cb48bd to your computer and use it in GitHub Desktop.
Save lushl9301/db50082392cc9433ec051c2bf5cb48bd to your computer and use it in GitHub Desktop.
{
"title": "Left Control -> Hyper/F18",
"rules": [
{
"description": "Remap Left Control to Hyper (ctrl + alt + cmd) if used in combination with other keys, otherwise map it to F18.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_command",
"modifiers": [
"left_control",
"left_option"
]
}
],
"to_if_alone": [
{
"key_code": "f18"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment