mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
46 lines
1.2 KiB
JavaScript
Executable File
46 lines
1.2 KiB
JavaScript
Executable File
var config = {
|
|
lang: 'nl',
|
|
time: {
|
|
timeFormat: 12,
|
|
displaySeconds: true,
|
|
digitFade: false,
|
|
},
|
|
weather: {
|
|
//change weather params here:
|
|
//units: metric or imperial
|
|
params: {
|
|
q: 'Baarn,Netherlands',
|
|
units: 'metric',
|
|
// if you want a different lang for the weather that what is set above, change it here
|
|
lang: 'nl',
|
|
APPID: 'YOUR_FREE_OPENWEATHER_API_KEY'
|
|
}
|
|
},
|
|
compliments: {
|
|
interval: 30000,
|
|
fadeInterval: 4000,
|
|
morning: [
|
|
'Good morning, handsome!',
|
|
'Enjoy your day!',
|
|
'How was your sleep?'
|
|
],
|
|
afternoon: [
|
|
'Hello, beauty!',
|
|
'You look sexy!',
|
|
'Looking good today!'
|
|
],
|
|
evening: [
|
|
'Wow, you look hot!',
|
|
'You look nice!',
|
|
'Hi, sexy!'
|
|
]
|
|
},
|
|
calendar: {
|
|
maximumEntries: 10,
|
|
url: "https://p01-calendarws.icloud.com/ca/subscribe/1/n6x7Farxpt7m9S8bHg1TGArSj7J6kanm_2KEoJPL5YIAk3y70FpRo4GyWwO-6QfHSY5mXtHcRGVxYZUf7U3HPDOTG5x0qYnno1Zr_VuKH2M"
|
|
},
|
|
news: {
|
|
feed: 'http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml'
|
|
}
|
|
}
|