-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathconfig.json.example
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"host_configs": {
"my_laptop": { // device hostname
"package_groups": [
"basic_apps", // package group name
"communication_apps",
"dev_tools"
]
},
"my_desktop_workstation": {
"package_groups": [
"*" // select all package groups
]
},
"my_editing_pc": {
"package_groups": [
"basic_apps",
"editing_tools"
]
}
},
"package_group_definitions": {
"basic_apps": [
"7zip.7zip", // application id
"Mozilla.Firefox",
"TheDocumentFoundation.LibreOffice",
"VideoLAN.VLC"
],
"editing_tools": [
"Audacity.Audacity",
"BlenderFoundation.Blender",
"GIMP.GIMP"
],
"dev_tools": [
"Git.Git",
"Microsoft.VisualStudioCode"
],
"communication_apps": [
"Jitsi.Meet",
"OpenWhisperSystems.Signal"
]
}
}