Skip to content

Instantly share code, notes, and snippets.

@aerobounce
Last active January 25, 2022 17:16
Show Gist options
  • Save aerobounce/9fb1e6fba9fa081887ce00c7330c400e to your computer and use it in GitHub Desktop.
Save aerobounce/9fb1e6fba9fa081887ce00c7330c400e to your computer and use it in GitHub Desktop.
Suppress MacBook Pro Key Repeat Faulty with Karabiner
{
"available_since": "12.6.9",
"description": "Surpress MacBook Pro Key Repeat Faulty",
"manipulators": [
{
"from": { "key_code": "b" },
"parameters": {
"basic.to_if_held_down_threshold_milliseconds": 25
},
"to_if_held_down": [{ "key_code": "b", "repeat": false }],
"type": "basic"
},
{
"from": { "key_code": "n" },
"parameters": {
"basic.to_if_held_down_threshold_milliseconds": 25
},
"to_if_held_down": [{ "key_code": "n", "repeat": false }],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment