-
Notifications
You must be signed in to change notification settings - Fork 1
/
node.json
205 lines (205 loc) · 5.43 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
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
{
"name": "Plugin: Mastodon Tag Timeline",
"permissions": {
"network": "Needs to access public API of a Mastodon instance"
},
"deferred": [
"content.lua"
],
"options": [{
"title": "Mastodon Tag Timeline",
"type": "section"
}, {
"title": "Mastodon Instance Base URL",
"ui_width": 12,
"name": "baseurl",
"type": "string",
"default": "https://mastodon.social"
}, {
"title": "Tag Query",
"ui_width": 12,
"name": "tag",
"type": "string",
"default": "infobeamer",
"hint": "Multiple tags can be separated by commas, no spaces. Don't put a # in there, mastodon tags are without them"
}, {
"title": "Filter Accounts",
"ui_width": 12,
"name": "filter_accounts",
"hint": "Commaseparated list of accounts to filter out filter out from tootlist",
"type": "string",
"default": ""
}, {
"title": "Filter Garbage",
"ui_width": 3,
"name": "filter_garbage",
"hint": "Remove toots that are crossposts from birdsite",
"type": "boolean",
"default": true
}, {
"title": "Filter toots with content warnings",
"ui_width": 3,
"name": "filter_spoilertexttoots",
"hint": "Remove toots that have content warnings",
"type": "boolean",
"default": false
}, {
"title": "Number of toots",
"ui_width": 3,
"name": "count",
"type": "select",
"options": [
[10, "10 toots"],
[20, "20 (default)"],
[40, "40 toots"],
[80, "80 toots"]
],
"default": 20
}, {
"title": "Exlude toots before",
"ui_width": 3,
"name": "not_before",
"type": "string",
"default": "2021-01-01",
"hint": "Please use the YYYY-MM-DD format"
}, {
"title": "Poll interval",
"ui_width": 3,
"name": "poll_interval",
"type": "select",
"options": [
[2, "2 Minutes"],
[5, "5 Minutes (default)"],
[10, "10 Minutes"]
],
"default": 5
}, {
"title": "Broadcast to scroller",
"ui_width": 3,
"name": "include_in_scroller",
"hint": "Add all toots as content to the scroller",
"type": "boolean",
"default": true
}, {
"title": "Ignore non-media posts",
"ui_width": 3,
"name": "ignore_non_media_posts",
"hint": "Do not show posts which do not include any media in the tile. Non-media posts will only show up in scroller, if checked",
"type": "boolean",
"default": false
}, {
"title": "Fonts and Sizes",
"type": "section"
}, {
"title": "Display Name Font",
"ui_width": 9,
"name": "name_font",
"type": "font",
"default": "default-font.ttf"
}, {
"title": "Display Name Size",
"ui_width": 3,
"name": "name_size",
"type": "integer",
"default": 70
}, {
"title": "Profile Info Font",
"ui_width": 9,
"name": "info_font",
"type": "font",
"default": "default-font.ttf"
}, {
"title": "Toot Text Font",
"ui_width": 9,
"name": "text_font",
"type": "font",
"default": "default-font.ttf"
}, {
"title": "Toot Text Size",
"ui_width": 3,
"name": "text_size",
"type": "integer",
"default": 70
}, {
"title": "Presentation",
"type": "section"
}, {
"title": "Profile Color",
"ui_width": 3,
"name": "profile_color",
"type": "color",
"default": [1,1,1,1]
}, {
"title": "Toot Color",
"ui_width": 3,
"name": "toot_color",
"type": "color",
"default": [1,1,1,1]
}, {
"title": "Shading",
"ui_width": 3,
"name": "shading",
"type": "select",
"options": [
[0.0, "No Shading"],
[0.1, "Barely visible"],
[0.3, "Light"],
[0.5, "Medium"],
[0.8, "Dark"],
[0.9, "Very dark"],
[1.0, "Solid"]
],
"default": 0.0
}, {
"title": "Margin",
"ui_width": 3,
"name": "margin",
"type": "select",
"options": [
[0, "0"],
[10, "10"],
[20, "20"],
[30, "30"],
[40, "40"]
],
"default": 10
}, {
"title": "Profile Info",
"ui_width": 3,
"name": "profile_over_under",
"type": "select",
"options": [
["over", "Above Image"],
["ontop", "Overlay Image"],
["under", "Below Image"]
],
"default": "over"
}, {
"title": "Toot Text",
"ui_width": 3,
"name": "text_over_under",
"type": "select",
"options": [
["over", "Overlay Image"],
["under", "Below Image"]
],
"default": "over"
}, {
"title": "Number of text lines",
"ui_width": 3,
"name": "max_text_lines",
"type": "select",
"options": [
[0, "all"],
[3, "3"],
[5, "5"],
[10, "10"],
[20, "20"],
[40, "40"]
],
"default": "10"
}],
"deferred": [
"tile.lua"
]
}