Skip to content

Commit 35ef2f8

Browse files
authored
Merge pull request pqrs-org#1002 from qubist/main
Add complex modification to disable WiFiDiagnostics shortcut
2 parents 35c191f + ff75c8e commit 35ef2f8

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

public/groups.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"name": "Modifier Keys",
55
"id": "modifier-keys",
66
"files": [
7+
{
8+
"path": "json/disable_wifidiagnostics.json"
9+
},
710
{
811
"path": "json/personal_bbeerr_rk61.json"
912
},
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"title": "Disable WifiDiagnostics shortcuts (Free up Hyper-W)",
3+
"rules": [
4+
{
5+
"description": "Disable command+control+option+shift+, which triggers WiFi logging.",
6+
"manipulators": [
7+
{
8+
"from": {
9+
"key_code": "comma",
10+
"modifiers": {
11+
"mandatory": [
12+
"command",
13+
"control",
14+
"option",
15+
"shift"
16+
]
17+
}
18+
},
19+
"to": [
20+
{
21+
"key_code": "f13"
22+
}
23+
],
24+
"type": "basic"
25+
}
26+
]
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)