Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
layer
Browse files Browse the repository at this point in the history
  • Loading branch information
suliveevil committed Apr 3, 2019
1 parent ef1bfd5 commit 32f20f0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions future/layer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"title": "Don't exit fullscreen when pressing ESC in Safari",
"rules": [
{
"description": "Remap ESC to Option-ESC in Safari only",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape"
},
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com.apple.Safari"
]
}
],
"to": [
{
"key_code": "escape",
"modifiers": [
"left_option"
]
}
]
}
]
}
]
}

0 comments on commit 32f20f0

Please sign in to comment.