Disable manipulator for key combination? #3926
Unanswered
austengary33
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have the following rule:
Can I change it so when I hit left command & tab in macOS, that combo doesn't get passed through?
{
"description": "Swap command and control",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"com.microsoft.rdc.mac",
"com.ericom.blazeclient",
"^com.carriez.rustdesk$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "left_control",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "left_command" }],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"com.microsoft.rdc.mac",
"com.ericom.blazeclient",
"^com.carriez.rustdesk$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "left_command",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "left_control" }],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"com.microsoft.rdc.mac",
"com.ericom.blazeclient",
"^com.carriez.rustdesk$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "right_control",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "right_command" }],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"com.microsoft.rdc.mac",
"com.ericom.blazeclient",
"^com.carriez.rustdesk$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "right_command",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "right_control" }],
"type": "basic"
}
]
}
Beta Was this translation helpful? Give feedback.
All reactions