-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig_basic.toml
46 lines (40 loc) · 1.42 KB
/
config_basic.toml
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
######## RetroFeed settings #################################################
#
# A more stripped-down example: Just time, weather, and news
#
# You can either replace config.toml with this file, or tell RetroFeed to use
# this file instead of the default when you launch it:
#
# python retrofeed.py config_basic.toml
#
###############################################################################
[display]
height = 24
width = 40
cps = 20
newline_cps = 100
beat_seconds = 1
force_uppercase = true
verbose_updates = true
24hr_time = true
[segments]
dtime = {module = 'date_time.py'}
news = {module = 'ap_news.py'}
wx = {module='us_weather', refresh=15, lat=36.118542, lon=-86.798358, location='Nashville Intl Airport (BNA)'}
[playlist]
# Alternating weather and news, with date/time in between them.
# Full weather and full date/time only shown at top of playlist.
segment_pause = 6
order = ['dtime', # Full date/time
'wx', # Full weather
['dtime', {format = 'short'}], # Short date/time
'news', # Some news items
['dtime', {format = 'short'}],
['wx', {forecast_periods = 1}], # Short weather
['dtime', {format = 'short'}],
'news',
['dtime', {format = 'short'}],
['wx', {forecast_periods = 1}],
['dtime', {format = 'short'}],
'news',
]