MagicMirror/js/config.js

40 lines
985 B
JavaScript
Raw Normal View History

var config = {
2015-10-23 16:34:02 -04:00
lang: 'nl',
2015-10-18 22:16:45 -04:00
time: {
timeFormat: 12
},
weather: {
//change weather params here:
//units: metric or imperial
params: {
2015-10-23 16:33:41 -04:00
q: 'Baarn,Netherlands',
units: 'metric',
// if you want a different lang for the weather that what is set above, change it here
2015-10-23 16:34:02 -04:00
lang: 'nl',
2015-10-23 16:33:41 -04:00
APPID: 'YOUR_FREE_OPENWEATHER_API_KEY'
}
},
compliments: {
2015-11-03 14:22:46 +01:00
interval: 30000,
fadeInterval: 4000,
morning: [
2015-10-23 16:33:41 -04:00
'Good morning, handsome!',
'Enjoy your day!',
'How was your sleep?'
],
afternoon: [
2015-10-23 16:33:41 -04:00
'Hello, beauty!',
'You look sexy!',
'Looking good today!'
],
evening: [
2015-10-23 16:33:41 -04:00
'Wow, you look hot!',
'You look nice!',
'Hi, sexy!'
]
2015-10-19 00:42:34 -04:00
},
news: {
feed: 'http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml'
}
}