-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.ini
147 lines (112 loc) · 3.42 KB
/
config.ini
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
# NOTE: Read the config.ini file in each of the plugin folders to understand what options are available to add here.
# DO NOT MODIFY THE config.ini FILE IN THE plugin FOLDER
# instead, copy the key from the plugin's config.ini file and put it under the section for the plugin below and then add
# your own value. For example, to change the unit type for the weather plugin from the default of imperial, put the
# unit_type key under the (existing) [openweathermap] section and set it to metric so it looks like this:
# [openweathermap]
# ... some settings ...
# unit_type = metric
# ... other settings ...
# This is so you can have multiple versions of the same plugin (you just add another section to this file with the
# "class" key pointing to the same plugin class).
# If you don't want a particular plugin to show on your screen at all, remove (or comment out) that section IN THIS FILE.
# This file is loaded up with all the plugins enabled so you can see them, but they can easily be modified/removed just by
# editing this file.
[DEFAULT]
# Any options in this [DEFAULT] section can also be added to each individual section to customize only that plugin.
# Some options, like "autoswitch_timer" only apply to full screen plugins and other options like "widget_height"
# only apply to widgets.
# in seconds
autoswitch_timer = 15
show_widgets = yes
widget_height = 35
default_font_face = Segoe UI
default_font_size = 20
debug = off
screen_margin = 10
[pidisplay]
fullscreen_mode = on
# Setting this to yes ignores screen_width and screen_height. Note, if you have trouble getting PiDisplay to display
# (or it just dies for no reason, with no error message), try setting the screen_width and screen_height to your
# monitor/LCDs default resolution and set fullscreen_uses_current_resolution to "no".
fullscreen_uses_current_resolution = yes
screen_width = 800
screen_height = 480
# in seconds
message_popup_fade_time = 2
# in seconds
message_popup_fade_delay = 1
take_screenshots = no
screenshot_dir = ./screenshots/
doubleclick_delay = 400
frames_per_second = 30
[pongclock]
class = PongClock
show_widgets = no
[openweathermap]
class = OpenWeatherMap
city = Los Angeles, CA
apikey =
[digitalclock]
class = DigitalClock
hour_type = 24
show_seconds = yes
[worldclock]
class = WorldClock
clock1_label = New York
clock1_timezone = US/Eastern
clock2_label = Los Angeles
clock2_timezone = US/Pacific
clock3_label = Denver
clock3_timezone = US/Mountain
clock4_label = United Kingdom
clock4_timezone = GMT
clock5_label = Adamstown
clock5_timezone = Pacific/Pitcairn
clock6_label = Paris
clock6_timezone = Europe/Paris
clock7_label = Tokyo
clock7_timezone = Asia/Tokyo
clock8_label = Sydney
clock8_timezone = Australia/Sydney
[pihole]
class = PiHole
pihole_server_ip = 127.0.0.1
api = http
api_key =
[systeminfo]
class = SystemInfo
[nowplaying]
class = NowPlaying
client_id =
username =
switch_next_plugin_when_nothing_is_playing = yes
[ticker1]
class = Ticker
tickers = ["ada-usd", "eth-usd", "btc-usd"]
speed = 2
widget_location = top
[ticker2]
class = Ticker
tickers = ["msft", "goog"]
speed = 2
widget_location = top
widget_height = 35
[nowplaying ticker]
class = NowPlayingTicker
client_id =
username =
widget_location = bottom
[picture viewer]
class = PictureViewer
show_widgets = no
[gameoflife]
class = GameOfLife
autoswitch_timer = 5
[news feed]
class = NewsFeed
slack_webhook =
[clok]
class = Clok
widget_location = bottom
widget_height = 10