-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathnode.json
143 lines (142 loc) · 3.9 KB
/
node.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
{
"name": "Info Screen",
"custom_ui": "config.html",
"options": [{
"title": "Expert configuration",
"type": "section",
"intro": "Configuration options not exposed through the custom interface."
}, {
"title": "Layout",
"ui_width": 4,
"name": "layout",
"type": "select",
"options": [
["auto", "Auto (default)"],
["fourk", "Optimized for 4K"],
["fullhd", "Optimized for FullHD"],
["seven20", "Optimized for 720p"]
],
"default": "auto"
}, {
"title": "Regular font",
"ui_width": 4,
"name": "font_regl",
"type": "font",
"default": "default-font.ttf"
}, {
"title": "Bold font",
"ui_width": 4,
"name": "font_bold",
"type": "font",
"default": "default-font-bold.ttf"
}, {
"title": "Auto duration",
"ui_width": 2,
"name": "auto_duration",
"type": "integer",
"default": 10
},
{
"title": "All other configuration options",
"type": "section",
"intro": "These settings can be modified through the normal custom interface. You should not edit them here. Instead click on the 'Info Screen' node on the left and edit these value in the resulting interface."
}, {
"title": "Header",
"ui_width": 4,
"name": "header",
"type": "resource",
"valid": ["image"],
"default": "example-header.png"
}, {
"title": "Footer",
"ui_width": 4,
"name": "footer",
"type": "resource",
"valid": ["image"],
"default": "example-footer.png"
}, {
"title": "Timezone",
"ui_width": 4,
"name": "timezone",
"type": "string",
"default": "Device timezone"
}, {
"title": "Time Format",
"ui_width": 4,
"name": "time_fmt",
"type": "string",
"default": "%a %H:%M"
}, {
"title": "Language",
"ui_width": 4,
"name": "language",
"type": "select",
"options": [
["nl", "Dutch"],
["en", "English"],
["es", "Spanish"],
["de", "German"]
],
"default": "en"
}, {
"title": "Audio",
"ui_width": 2,
"name": "audio",
"type": "boolean",
"default": false
}, {
"title": "Pages",
"name": "pages",
"type": "list",
"itemname": "Page",
"items": [{
"title": "Schedule",
"ui_width": 4,
"name": "schedule",
"type": "json",
"default": {
"hours": []
}
}, {
"title": "Duration",
"ui_width": 4,
"name": "duration",
"type": "select",
"options": [
["auto", "Automatic"],
["5", "5 seconds"],
["10", "10 seconds"],
["15", "15 seconds"],
["20", "20 seconds"],
["60", "1 minute"],
["120", "2 minutes"],
["180", "3 minutes"]
],
"default": "10"
}, {
"title": "Layout",
"ui_width": 4,
"name": "layout",
"type": "select",
"options": [
["fullscreen", "Fullscreen"],
["text-left", "Text Left"],
["text-right", "Text Right"]
],
"default": "fullscreen"
}, {
"title": "Asset",
"ui_width": 4,
"name": "media",
"type": "resource",
"valid": ["image", "video"],
"default": "empty.png"
}, {
"title": "Config",
"ui_width": 4,
"name": "config",
"type": "json",
"default": {}
}]
}]
}