Created
August 18, 2020 23:29
-
-
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
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
{ | |
"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