-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.json
More file actions
36 lines (36 loc) · 858 Bytes
/
node.json
File metadata and controls
36 lines (36 loc) · 858 Bytes
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
{
"name": "spreadspace clock",
"options": [{
"title": "Clock",
"type": "section"
}, {
"title": "Time Zone",
"ui_width": 3,
"name": "timezone",
"type": "select",
"hint": "The timezone",
"options": [
["UTC", "UTC"],
["Europe/Vienna", "Europa / Wien"]
],
"default": "Europe/Vienna"
}, {
"title": "Font",
"ui_width": 3,
"name": "font",
"type": "font",
"default": "ubuntu.ttf"
}, {
"title": "Background color",
"ui_width": 3,
"name": "background_color",
"type": "color",
"default": [0,0,0,1]
}, {
"title": "Forground color",
"ui_width": 3,
"name": "foreground_color",
"type": "color",
"default": [1,1,1,1]
}]
}