-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
executable file
·161 lines (156 loc) · 3.8 KB
/
config.js
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
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*
* For more information how you can configurate this file
* See https://github.com/MichMich/MagicMirror#configuration
*
*/
var config = {
address: "localhost", // Address to listen on, can be:
// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
// - another specific IPv4/6 to listen on a specific interface
// - "", "0.0.0.0", "::" to listen on any interface
// Default, when address config is left out, is "localhost"
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.67.0/24"], // Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
language: "fr",
timeFormat: 24,
units: "metric",
modules: [
{
module: "MMM-VoiceAssistant",
position: "lower_third",
config: {
maxWidth: "100%",
header: "Voice Assistant",
updateDelay:500
}
},
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left",
config: {
displayType:"both",
analogFace:"face-012",
analogPlacement:"right",
}
},
{
module: "calendar",
header: "Vacances francaises",
position: "top_left",
config: {
calendars: [
{
symbol: "vacances",
url: "https://www.data.gouv.fr/fr/datasets/le-calendrier-scolaire/"
},
{
symbol: "jours feries",
url: "https://etalab.github.io/jours-feries-france-data/ics/jours_feries_metropole.ics"
}
//url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/FR_Holidays.ics"
]
}
},
{
module: "compliments",
position: "middle_center",
//remoteFile: 'compliments_bb.json'
config:
{
compliments:{
"anytime" : [
"Quoi de neuf?",
"Yoh!",
"Ca fait plaisir de te voir!",
"Re!",
"Ca faisait longtemps!"
],
"morning" : [
"Bonjour!",
"Déjà pris ton café?",
"A fond la forme!"
],
"afternoon" : [
"A ton rythme!",
"nous faisons la difference!",
"Bientot le soir!"
],
"evening" : [
"Tu as fait quelques sourires aujourd'hui",
"Un apéritif bien mérité .",
"Merci pour tes efforts!"
],
"day_sunny": [
"soleil aujourd'hui!",
"c'est un beau jour"
],
"snow": [
"Il neige!"
],
"rain": [
"N'oubliez pas le parapluie"
]
}
}
},
{
module: "currentweather",
position: "top_right",
config: {
location: "Schwindratzheim",
locationID: "2975419", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
appid: "6530602607bfdf272c78690ec36f387e"
}
},
{
module: "weatherforecast",
position: "top_right",
header: "Weather Forecast",
config: {
location: "Schwindratzheim",
locationID: "2975419", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
appid: "6530602607bfdf272c78690ec36f387e"
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "Heise News",
url: "http://www.heise.de/rss/heise-atom.xml"
},
{
title: "DNA",
url: "http://dna.fr/rss"
}
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true
}
},
{
module: "mmpm"
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}