Great Improvement!!!
But, of course, you seem to always strive for excellence! :winking_face:
Great Improvement!!!
But, of course, you seem to always strive for excellence! :winking_face:
you might look at MMM-Recipe by @cowboysdude
I am currently using for my Kitchen MM display (not mirrored)
I have been looking for something exactly like this for my kitchen info mirror.
Messages and things to do and grocery list!!! :grinning_face_with_smiling_eyes:
Love It!!!
What module is that one at the top right? The “things to do”?
I just did added this to the calendar config and it changed it automatically:
{
module: "calendar",
position: "top_left", // This can be any of the regions. Best results in left or right regions.
config: {
language: "fr",
timezone: "France/Paris"
}
},
you will also need to add this to your start section:
/ /Set locale.
moment.updateLocale(config.language, this.getLocaleSpecification(config.timeZone));
@sdetweil after you add all that I posted, in your config file the use can add the timezone and language they want to use.
{
module: "calendar",
position: "top_left",
config: {
language: "en",
timezone: "Norway/Oslo"
}
},
for timezone:
Add this to your defaults in the modules js: timezone: "America/Chicago"
Then add this in the code:
getScripts: function() {
return [
"moment.js", "moment-timezone.js"
];
},
and this:
var now = moment();
if (this.config.timezone) {
now.tz(this.config.timezone);
}
All I can find is to put this in your js file:
getTranslations: function() {
return {
en: "translations/en.json",
de: "translations/de.json"
}
}