Skip to content

Instantly share code, notes, and snippets.

@giuliano108
Created March 30, 2024 10:14
Show Gist options
  • Save giuliano108/0f6bb8be526371e304e7bacd6bbd1de3 to your computer and use it in GitHub Desktop.
Save giuliano108/0f6bb8be526371e304e7bacd6bbd1de3 to your computer and use it in GitHub Desktop.
Karabiner Elements - Battle Axe keyboard remap
{
"description": "Battle Axe",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.BitmapBureau\\.BattleAxe$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "k",
"modifiers": {}
},
"to": [
{
"key_code": "up_arrow"
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.BitmapBureau\\.BattleAxe$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "comma",
"modifiers": {}
},
"to": [
{
"key_code": "down_arrow"
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.BitmapBureau\\.BattleAxe$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "m",
"modifiers": {}
},
"to": [
{
"key_code": "left_arrow"
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.BitmapBureau\\.BattleAxe$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "period",
"modifiers": {}
},
"to": [
{
"key_code": "right_arrow"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment