This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.json
111 lines (111 loc) · 2.11 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
{
"name": "Now Serving",
"control_ui": "control.html",
"options": [
{
"title": "Content Configuration",
"type": "section"
},
{
"title": "Queue on text",
"name": "queue_on_text",
"type": "string",
"default": "Serving customers",
"ui_width": 12
},
{
"title": "Queue off text line 1",
"name": "queue_off_text_1",
"type": "string",
"default": "",
"ui_width": 12
},
{
"title": "Queue off text line 2",
"name": "queue_off_text_2",
"type": "string",
"default": "We will begin serving customers shortly",
"ui_width": 12
},
{
"title": "Queue off text line 3",
"name": "queue_off_text_3",
"type": "string",
"default": "",
"ui_width": 12
},
{
"title": "Queue off text line 4",
"name": "queue_off_text_4",
"type": "string",
"default": "",
"ui_width": 12
},
{
"type": "font",
"title": "Font",
"name": "font",
"ui_width": 3,
"default": "silkscreen.ttf"
},
{
"type": "color",
"title": "Font colour",
"name": "font_colour",
"ui_width": 3,
"default": [
0,
0,
0,
1
]
},
{
"type": "color",
"title": "Background colour",
"name": "background_colour",
"ui_width": 3,
"default": [
1,
1,
1,
1
]
},
{
"title": "Logo",
"ui_width": 3,
"name": "logo",
"type": "resource",
"valid": [
"image"
],
"default": "empty.png"
},
{
"title": "Screen Configuration",
"type": "section"
},
{
"title": "Automatic resolution",
"ui_width": 4,
"name": "auto_resolution",
"type": "boolean",
"default": false
},
{
"title": "Manual width",
"ui_width": 4,
"name": "width",
"type": "integer",
"default": 1920
},
{
"title": "Manual height",
"ui_width": 4,
"name": "height",
"type": "integer",
"default": 1080
}
]
}