-
Notifications
You must be signed in to change notification settings - Fork 0
/
exampleConfig.json
43 lines (43 loc) · 1.28 KB
/
exampleConfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "https://raw.githubusercontent.com/davelosert/yco/main/src/schemas/YcoConfigSchema.json",
"switchFocus": [
{ "triggerKey": "cmd - 1", "app": "Code" },
{ "triggerKey": "cmd - 2", "app": "Firefox" },
{ "triggerKey": "cmd - 3", "app": "iTerm2" },
{ "triggerKey": "cmd - 4", "app": "Google Chrome" },
{ "triggerKey": "cmd - 5", "app": "Slack" },
{ "triggerKey": "cmd - 6", "app": "Microsoft Outlook" },
{ "triggerKey": "cmd - 7", "app": "Microsoft Teams" },
{ "triggerKey": "cmd - 8", "app": "Spotify" }
],
"layoutModeTriggerKey": "alt - s",
"layouts": [
{
"name": "monitor",
"triggerKey": "m",
"nonManaged": "allInOneSpace",
"spaces": [[
["iTerm2", "Code", "Firefox"],
["Toggl Track", "Google Chrome", "Slack", "Microsoft Outlook"],
["Microsoft Teams", "Spotify"]
]]
},
{
"name": "laptop",
"triggerKey": "l",
"nonManaged": "allInOwnSpace",
"spaces": [[
["Code"], ["Firefox"], ["iTerm2"], ["Google Chrome", "Toggl Track"], ["Slack"], ["Microsoft Outlook"]
]]
},
{
"name": "pairing",
"triggerKey": "p",
"nonManaged" : "leaveUntouched",
"spaces": [
[],
[["Code"], ["Firefox"], ["iTerm2"]]
]
}
]
}