-
Notifications
You must be signed in to change notification settings - Fork 27
/
macOS Screen Saver (com.apple.screensaver).json
87 lines (87 loc) · 3.12 KB
/
macOS Screen Saver (com.apple.screensaver).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
{
"title": "macOS Screen Saver (com.apple.screensaver)",
"description": "Manages macOS screensaver settings",
"__version": "10",
"__feedback": "[email protected]",
"type": "object",
"options": {
"remove_empty_properties": true
},
"definitions": {
"policy_group": {
"type": "object",
"format": "grid",
"options": {
"collapsed": true,
"disable_properties": true
}
}
},
"properties": {
"askForPassword": {
"title": "Ask for password",
"description": "Refers to setting in System Preferences > Desktop & Screen Saver > Start after X.",
"property_order": 10,
"anyOf": [
{"type": "null", "title": "Not Configured"},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "askForPassword"
},
"links": [{
"rel": "Documentation",
"href": "https://optional.example.com/documentation.html"
}]
},
"askForPasswordDelay": {
"title": "Ask for password delay",
"description": "Refers to setting in System Preferences > Security & Privacy > General tab > Require password X seconds after sleep or screen saver begins.",
"property_order": 20,
"anyOf": [
{"type": "null", "title": "Not Configured"},
{
"title": "Configured",
"type": "integer",
"options": {
"enum_titles": ["immediately", "5 seconds", "1 Minute", "5 Minutes", "15 Minutes", "1 Hour", "4 hours", "8 hours"]
},
"enum": [0, 5, 60, 300, 900, 3600, 14400, 28800]
}
],
"options": {
"infoText": "askForPasswordDelay"
},
"links": [{
"rel": "Documentation for Policy",
"href": "https://optional.example.com/documentation.html"
}]
},
"idleTime": {
"title": "Idle time",
"description": "Refers to setting in System Preferences > Desktop & Screen Saver > Screen Saver > Start After X.",
"property_order": 30,
"anyOf": [
{"type": "null", "title": "Not Configured"},
{
"title": "Configured",
"type": "integer",
"options": {
"enum_titles": ["Never", "1 Minute", "2 Minutes", "5 Minutes", "10 Minutes", "20 Minutes", "30 Minutes", "1 Hour"]
},
"enum": [0, 60, 120, 300, 600, 1200, 1800, 3600]
}
],
"options": {
"infoText": "idleTime"
},
"links": [{
"rel": "Documentation for Policy",
"href": "https://optional.example.com/documentation.html"
}]
}
}
}