-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.config.js
145 lines (139 loc) · 4.18 KB
/
sample.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
/* Magic Mirror Config Sample
*
* By Michael Teeuw https://michaelteeuw.nl
* MIT Licensed.
*
* For more information on how you can configure this file
* see https://docs.magicmirror.builders/getting-started/configuration.html#general
* and https://docs.magicmirror.builders/modules/configuration.html
* Place this in MagicMirror_root_dir/config/
*/
let config = {
address: "localhost", //"192.168.1.10", // 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 or empty, is "localhost"
port: 8080,
basePath: "/", // The URL path where MagicMirror is hosted. If you are using a Reverse proxy
// you must set the sub path here. basePath must end with a /
ipWhitelist: [], // 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"],
useHttps: false, // Support HTTPS or not, default "false" will use HTTP
httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true
httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true
language: "en",
locale: "en-US",
logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
timeFormat: 12,
units: "imperial",
// serverOnly: true/false/"local" ,
// local for armv6l processors, default
// starts serveronly and then starts chrome browser
// false, default for all NON-armv6l devices
// true, force serveronly mode, because you want to.. no UI on this device
modules: [
{
module: 'MMM-DeviceControl'
},
{
module: 'MMM-GoogleAssistant',
position: "top_left",
config: {
debug: true,
hotwords: ["jarvis"],
sensitivity: [.7],
audioDeviceIndex: 0,
},
classes: 'everyone' // authorized users only
},
{
module: 'MMM-ProfileSwitcher',
config : {
defaultClass: "default",
// User Names that correspond to users created for facial recognition
enterMessages: {
"Bob Alice": "Hey %profile%!", // We both have this message
"Kevin" : "Welcome to Magic Mirror %profile%."
}
}
},
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar",
},
{
module: "clock",
position: "top_bar",
classes: 'default everyone'
},
// {
// module: "calendar",
// header: "Todoist",
// position: "top_right",
// config: {
// calendars: [
// {
// symbol: "calendar-check",
// url: "calendar.ico"
// }
// ]
// },
// classes: 'Bob'
// },
{
module: "compliments",
position: "lower_third",
classes: "Alice"
},
// {
// module: "weather",
// position: "top_right",
// config: {
// weatherProvider: "openweathermap",
// type: "current",
// location: "NAME",
// locationID: "ID", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
// apiKey: "YOUR_WEATHER_API_TOKEN"
// },
// classes: 'everyone'
// },
// {
// module: "weather",
// position: "top_right",
// config: {
// weatherProvider: "openweathermap",
// type: "forcast",
// location: "NAME",
// locationID: "ID", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
// apiKey: "YOUR_WEATHER_API_TOKEN"
// },
// classes: 'everyone'
// },
{
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
},
classes: 'default'
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}