-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
214 lines (189 loc) · 5.76 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/* Magic Mirror Config Sample
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var config = {
port: 8080,
language: 'en',
timeFormat: 12,
units: 'metric',
modules: [
{
module: 'aiclient',
position: 'middle_center' // This can be any of the regions.
},
{
module: 'aiclientdebugger',
position: 'middle_center'
},
{
module: "clock",
position: "top_left"
},
{
module: "compliments",
position: "bottom_bar", // This can be any of the regions.
// Best results in one of the middle regions like: lower_third
config: {
// The config property is optional.
// If no config is set, the default compliments are shown.
// See 'Configuration options' for more information.
fadeSpeed:2000,
compliments:{
day_sunny:[
"today is a sunnyday.Better wear your sunscreen lotion",
"It's a beautiful day"],
rain:["Dont forget your umbrella"],
night_clear:["Its a brezze night"],
cloudy:["Clouds ,Clouds all around"],
anytime:[
"Hey there Handsome!"
],
morning: [
"Good morning, handsome!",
"Enjoy your day!",
"How was your sleep?"
],
afternoon: [
"Hello, beauty!",
"You look Awesome!",
"Looking good today!",
"Hitting your stride!",
"You are making a difference!",
"You're more fun than bubble wrap!"
],
evening:[
"Wow, you look hot!",
"You look nice!",
"Hi, Handsome!",
"You made someone smile today, I know it.",
"You are making a difference.",
"The day was better for your efforts."
]
}
}
},
{
module: "calendar",
header: "Indian Holidays",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check-o ",
url: "http://www.officeholidays.com/ics/ics_country_noregion.php?tbl_country=India"
}
]
}
},
{
module: "currentweather",
position: "top_right",
config: {
location: "Bhubaneshwar,India",
locationID: "1275817", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "ca15073f20f10f8945dddd175c4b3c4e",
degreeLabel:"Metric",
iconTable: {
'01d': 'wi-day-sunny',
'02d': 'wi-day-cloudy',
'03d': 'wi-cloudy',
'04d': 'wi-cloudy-windy',
'09d': 'wi-showers',
'10d': 'wi-rain',
'11d': 'wi-thunderstorm',
'13d': 'wi-snow',
'50d': 'wi-fog',
'01n': 'wi-night-clear',
'02n': 'wi-night-cloudy',
'03n': 'wi-night-cloudy',
'04n': 'wi-night-cloudy',
'09n': 'wi-night-showers',
'10n': 'wi-night-rain',
'11n': 'wi-night-thunderstorm',
'13n': 'wi-night-snow',
'50n': 'wi-night-alt-cloudy-windy'
}
}
},
{
module: "weatherforecast",
position: "top_right",
header: "Weather Forecast",
config: {
location: "Bhubaneshwar,India",
locationID: "1275817", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "ca15073f20f10f8945dddd175c4b3c4e",
degreeLabel:"Metric"
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "Hindustan Times",
url: "http://www.hindustantimes.com/rss/topnews/rssfeed.xml"
}
],
showSourceTitle: true,
showPublishDate: true
}
},
{
module: "MMM-bitcoin",
position: 'bottom_right',
config: {
fiat: 'usd', // 'usd' and 'eur' available, defaults to 'usd'
showBefore: 'Bitstamp', // will display before the bitcoin price, default 'Bitstamp'
updateInterval: 60000 // update interval in milliseconds
}
},
{
module: 'email',
position: 'bottom_left',
header: 'Email',
config: {
accounts: [
{
user: '[email protected]',
password: 'Jesusinall23@#',
host: 'imap.gmail.com',
port: 993,
tls: true,
ssl:true,
authTimeout: 10000,
numberOfEmails:3,
},
],
fade: true,
maxCharacters: 30
}
},
{
module: 'mmm-systemtemperature',
position: 'bottom_right', // This can be any of the regions.
classes: 'small dimmed', // Add your own styling. Optional.
config: {
// See 'Configuration options' for more information.
prependString:'The System Temprature is:',
updateInterval:5000,
animationSpeed:0,
unit:'c'
}
},
{
module: "helloworld",
position:"top_center", // This can be any of the regions.
config:{
// See 'Configuration options' for more information.
text: "Magic Mirror by Joshua Shibu",
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {module.exports = config;}