Skip to content

Instantly share code, notes, and snippets.

@sergeybe
Created February 29, 2020 15:33
Show Gist options
  • Save sergeybe/68953a47d51d6dd425272f4870f7bcd2 to your computer and use it in GitHub Desktop.
Save sergeybe/68953a47d51d6dd425272f4870f7bcd2 to your computer and use it in GitHub Desktop.
Finder.json
{
"title": "My Finder",
"rules": [
{
"description": "Change Command-Q to Command-W in Finder",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "q",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "w",
"modifiers": [
"command"
]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.apple\\.finder$"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment