-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.yaml
More file actions
91 lines (90 loc) · 2.05 KB
/
example.yaml
File metadata and controls
91 lines (90 loc) · 2.05 KB
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
# List of modules to install.
# For example:
modules:
install:
- "https://gitlab.com/khassel/MMM-RepoStats"
- "https://github.com/jalibu/MMM-RAIN-MAP"
config: |
language: "de",
locale: "de-DE",
logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
timeFormat: 24,
units: "metric",
modules: [
{
module: "MMM-RepoStats",
position: "top_right",
config: {
repoList: [
"karsten13/magicmirror",
"karsten13/mmpm",
"library/node",
"library/traefik",
],
},
},
{
module: "MMM-RAIN-MAP",
position: "top_right",
config: {
animationSpeed: 600,
height: "420px",
width: "420px",
map: "OSM",
lat: 50.17659,
lng: 8.62685,
mapTypeId: "terrain",
markers: [{ lat: 50.17659, lng: 8.62685, color: "black" }],
osmMapUrl: "https://tiles.wmflabs.org/bw-mapnik/${z}/${x}/${y}.png",
opacity: 0.75,
showClockSymbol: false,
updateIntervalInSeconds: 300,
zoom: 8,
zoomOutEach: 2,
zoomOutLevel: 2,
}
},
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "US Holidays",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check",
url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics" }
]
}
},
{
module: "compliments",
position: "lower_third"
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "New York Times",
url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml"
}
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true
}
},
]