-
Notifications
You must be signed in to change notification settings - Fork 2
/
com.apple.Dock.json
534 lines (534 loc) · 17.9 KB
/
com.apple.Dock.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
{
"title": "Dock Settings",
"description": "Preference Domain: com.apple.dock",
"__version": "1.0",
"__feedback": "[email protected]",
"type": "object",
"options": {
"remove_empty_properties": true
},
"definitions": {
"policy_group": {
"type": "object",
"format": "grid",
"options": {
"collapsed": true,
"disable_properties": true
}
}
},
"properties": {
"static-apps": {
"title": "Persistent Applications",
"description": "This list of applications will appear on every user's dock. These items will also NOT be removable!",
"propertyOrder": 10,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "array",
"items": {
"type": "object",
"title": "Application",
"properties": {
"mcx_typehint": {
"type": "integer",
"title": "MCX_TypeHint",
"description": "Position on the dock",
"default": 1
},
"tile-type": {
"type": "string",
"title": "Tile-Type",
"description": "The default value for this is \"file-type\"",
"enum": ["file-type"],
"options": {
"enum_titles": ["Default"]
}
},
"tile-data": {
"type": "object",
"title": "Dock Application",
"properties": {
"file-label": {
"type": "string",
"title": "Dock Application Name",
"description": "The name you'd like to display in the dock"
},
"file-data": {
"type": "object",
"title": "Dock Application Parameters",
"properties": {
"_CFURLString": {
"type": "string",
"title": "Path",
"description": "Path on the FileSystem to Application"
},
"_CFURLStringType": {
"type": "integer",
"title": "String Type",
"enum": [0],
"options": {
"enum_titles": ["Default"]
}
}
},
"required": [
"_CFURLString",
"_CFURLStringType"
]
},
"file-type": {
"type": "integer",
"title": "File Type",
"enum": [1],
"options": {
"enum_titles": ["Default"]
}
}
},
"required": [
"file-label",
"file-data",
"file-type"
]
}
}
}
}
],
"options": {
"infoText": "Persistant Application"
},
"links": [{
"rel": "More Information",
"href": ""
}]
},
"static-others": {
"title": "Persistent Items",
"description": "This list of items will appear on every user's dock on the right side next to the Trash. These items will also NOT be removable!",
"propertyOrder": 20,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "array",
"items": {
"type": "object",
"title": "Item",
"properties": {
"tile-type": {
"type": "string",
"title": "Item Type",
"description": "The type of item you would like to use",
"enum": ["file-tile", "url-tile", "directory-tile"],
"options": {
"enum_titles": ["File", "URL", "Directory"]
}
},
"tile-data": {
"type": "object",
"title": "Dock Item",
"properties": {
"file-label": {
"type": "string",
"title": "Dock Item Name",
"description": "The name you'd like to display in the dock"
},
"file-data": {
"type": "object",
"title": "Dock Item Paramters",
"properties": {
"_CFURLString": {
"type": "string",
"title": "Path or URL",
"description": "Path on the FileSystem or URL to the Item"
},
"_CFURLStringType": {
"type": "integer",
"title": "String Type",
"enum": [0],
"options": {
"enum_titles": ["Default"]
}
}
},
"required": [
"_CFURLString",
"_CFURLStringType"
]
},
"file-type": {
"type": "integer",
"title": "File Type",
"enum": [1,2,3],
"options": {
"enum_titles": ["File","URL","Directory"]
}
}
}
}
}
}
}]
},
"static-only": {
"title": "Persistent Apps/Items ONLY",
"description": "This will change the user's dock to only show the applications/items that are specified in this profile",
"propertyOrder": 30,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"default": false,
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"contents-immutable": {
"title": "Allow modifying items in the Dock",
"description": "Prevent the user from ahving the ability to remove or add any item(s) to the Dock",
"properyOrder": 40,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"orientation": {
"title": "Dock Orientation",
"description": "Where the dock should appear on the screen",
"propertyOrder": 50,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "string",
"default": "bottom",
"enum": ["left", "bottom", "right"],
"options": {
"enum_titles": ["Left", "Bottom", "Right"]
}
}]
},
"position-immutable": {
"title": "Position Immutable",
"description": "Prevent the user from changing the dock position and disable the buttons in System Preferences",
"propertyOrder": 60,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"autohide": {
"title": "Automatically Hide the Dock",
"description": "When true, the dock will be automatically hideen and shown depending on cursor position",
"propertyOrder": 70,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"autohide-immutable": {
"title": "Autohide CheckBox Disabled in System Preferences",
"description": "Prevent the user from having the ability to change the autohide setting",
"propertyOrder": 80,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"minimize-to-application": {
"title": "Minimize windows into the application icon",
"description": "Set this to true if you want applications to minimize into their icon",
"propertyOrder": 90,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"minimize-to-application-immutable": {
"title": "Minimize to Application CheckBox Disabled in System Preferences",
"description": "Prevent the user from having the ability to change the minimize to application setting",
"propertyOrder": 100,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"magnification": {
"title": "Magnification Enabled",
"description": "When true mangification will happen when the user mouses over an icon on the dock",
"propertyOrder": 110,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"magnify-immutable": {
"title": "Magnification CheckBox Disabled in System Preferences",
"description": "Prevent the user from having the ability to change the mangificaiton setting",
"propertyOrder": 120,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"largesize": {
"title": "Configure Magnification Size",
"description": "Set the largest magnification size in pixels",
"propertyOrder": 130,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "integer",
"default": 128
}]
},
"magsize_immutable": {
"title": "Magnification Slider Disabled in System Preferences",
"description": "Prevent the user from having the ability to change the mangification size setting",
"propertyOrder": 140,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"show-process-indicators": {
"title": "Show indicators for applications currently open",
"description": "Set this to true if you would like to disaply the indicator underneath applications that are currently running",
"propertyOrder": 150,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"launchanim": {
"title": "Animate Opening Applications",
"description": "Set this to true if you would like applications to have animation when opening",
"propertyOrder": 160,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"launchanim-immutable": {
"title": "Animate opening Applications CheckBox Disabled in System Preferences",
"description": "Prevent the user from ahving the ability to change the animate application setting",
"propertyOrder": 170,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"mineffect": {
"title": "Minimize Window Effect",
"description": "The transition effect to use when applications are minimized to the Dock",
"propertyOrder": 180,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "string",
"enum": ["genie", "scale"],
"options": {
"enum_titles": ["Genie Effect", "Scale Effect"]
}
}]
},
"mineffect-immutable": {
"title": "Minimize Window Effect Dropdown Disabled in System Preferences",
"description": "Preven the user from having the ability to modify the Minimize Window Effect setting",
"properyOrder": 190,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"tilesize": {
"title": "Dock Size",
"description": "Dock Size in pixels",
"propertyOrder": 200,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "integer",
"default": 64
}]
},
"size-immutable": {
"title": "Size Slider for Dock Disabled in System Preferences",
"description": "Prevent the user from having the ability to modify the dock size setting slider",
"properyOrder": 210,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"AllowDockFixupOverride": {
"title": "Allow DockFixup Override",
"description": "If true, use the file in /Library/Preferences/com.apple.dockfixup.plist when a new user or migrated user logs in. The format of this file currently has no documentation. This option has no effect for existing users. This option is ONLY VALID in macOS 10.12+!",
"properyOrder": 220,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
},
"show-recents": {
"title": "Show Recently Opened Applications",
"description": "When true, the last 3 applications that were opened will display after the pinned applications to the Dock but before the pinned Items and Trash Can. This option is ONLY VALID on macOS 10.14+!",
"properyOrder": 230,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "boolean",
"enum": [false, true],
"options": {
"enum_titles": ["No", "Yes"]
}
}]
}
}
}