Last active
January 25, 2022 17:16
-
-
Save aerobounce/9fb1e6fba9fa081887ce00c7330c400e to your computer and use it in GitHub Desktop.
Suppress MacBook Pro Key Repeat Faulty with Karabiner
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
{ | |
"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