Skip to content

Instantly share code, notes, and snippets.

@chalkygames123
Created September 16, 2024 07:14
Show Gist options
  • Save chalkygames123/36b83d6082bf9b7d77c12fe5be80edb3 to your computer and use it in GitHub Desktop.
Save chalkygames123/36b83d6082bf9b7d77c12fe5be80edb3 to your computer and use it in GitHub Desktop.
Minimal Karabiner-Elements rules for moving focus to the next/previous window in the JIS keyboard layout.
{
"description": "Change ⌘@/⌘⇧@ to ⌘`/⌘⇧`, respectively.",
"manipulators": [
{
"from": {
"key_code": "open_bracket",
"modifiers": {
"mandatory": ["command"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": ["command"]
}
],
"type": "basic"
},
{
"from": {
"key_code": "open_bracket",
"modifiers": {
"mandatory": ["command", "shift"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": ["command", "shift"]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment