Skip to content

Instantly share code, notes, and snippets.

@thelastlin
Last active December 23, 2021 10:56
Show Gist options
  • Select an option

  • Save thelastlin/c1269683470531873ec89e95ce3d6198 to your computer and use it in GitHub Desktop.

Select an option

Save thelastlin/c1269683470531873ec89e95ce3d6198 to your computer and use it in GitHub Desktop.
karabiner configure: Use FN+Caps as Caps, Caps as Right Control
{
"title": "",
"rules": [
{
"description": "Fn+Caps Lock as Caps Lock",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"fn"
]
},
"simultaneous": [
{}
],
"key_code": "caps_lock"
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
},
{
"description": "Caps Lock as Right Control",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "caps_lock"
},
"to": [
{
"key_code": "right_control"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment