Skip to content

Instantly share code, notes, and snippets.

@saragiotto
Last active February 7, 2021 13:53
Show Gist options
  • Save saragiotto/48d173d9bf4895e0d25389d5a5d7b75e to your computer and use it in GitHub Desktop.
Save saragiotto/48d173d9bf4895e0d25389d5a5d7b75e to your computer and use it in GitHub Desktop.
If you facing some troubles using your brand new MotoSpeed CK62 on a Mac OS X, you can use Karabiner app together with this custom key bindings to make your life easier!
{
"title": "Motospeed CK62 layer fix",
"maintainers": ["Leonardo Saragiotto"],
"homepage": "https://gist.github.com/saragiotto/48d173d9bf4895e0d25389d5a5d7b75e",
"import_url": "karabiner://karabiner/assets/complex_modifications/import?url=https://gist.githubusercontent.com/saragiotto/48d173d9bf4895e0d25389d5a5d7b75e/raw/1a46faaaf0c4f66079e4efecc14a9ef793fc4dff/customCK62MacOSx.json",
"rules": [
{
"description": "Fix ? key, forward delete and alt tab for windows and tilde accent",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_alt"
],
"optional": [
"left_shift"
]
}
},
"to": [
{
"key_code": "slash"
}
]
},
{
"type": "basic",
"from": {
"key_code": "comma",
"modifiers": {
"mandatory": [
"left_alt"
]
}
},
"to": [
{
"key_code": "delete_forward"
}
]
},
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": [ "left_command" ]
}
]
},
{
"type": "basic",
"from": {
"key_code": "z",
"modifiers": {
"mandatory": [
"left_alt"
]
}
},
"to": [
{
"key_code": "mute"
}
]
},
{
"type": "basic",
"from": {
"key_code": "x",
"modifiers": {
"mandatory": [
"left_alt"
]
}
},
"to": [
{
"key_code": "volume_decrement"
}
]
},
{
"type": "basic",
"from": {
"key_code": "c",
"modifiers": {
"mandatory": [
"left_alt"
]
}
},
"to": [
{
"key_code": "volume_increment"
}
]
}
]
}
]
}
@gameformush
Copy link

Where one should put this file?

@gameformush
Copy link

gameformush commented Dec 17, 2019

Also, did you managed to reprogram this keyboard to use FN as a toggle, to void their strange desition to use permanent toggling?

@ykotov2
Copy link

ykotov2 commented Dec 22, 2019

@gameformush ~/.config/karabiner/assets/complex_modifications. More details here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment