Skip to content

Instantly share code, notes, and snippets.

@yuhonas
Created August 18, 2020 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuhonas/bab3ab346b77be02bf39232aaac3cb2c to your computer and use it in GitHub Desktop.
Save yuhonas/bab3ab346b77be02bf39232aaac3cb2c to your computer and use it in GitHub Desktop.
karabiner elements media control keys for keyboards that don't have them eg FILCO TKL
{
"title": "Media Controls for keyboards that don't have it",
"rules": [{
"description": "Function media keys",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "insert",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [{
"key_code": "play_or_pause"
}]
},
{
"type": "basic",
"from": {
"key_code": "pause",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [{
"key_code": "mute"
}]
},
{
"type": "basic",
"from": {
"key_code": "page_up",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [{
"key_code": "volume_increment"
}]
},
{
"type": "basic",
"from": {
"key_code": "delete_forward",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [{
"key_code": "rewind"
}]
},
{
"type": "basic",
"from": {
"key_code": "end",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [{
"key_code": "fastforward"
}]
},
{
"type": "basic",
"from": {
"key_code": "page_down",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [{
"key_code": "volume_decrement"
}]
}
]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment