hey, Sean -
three minor issues and I got my install perfect:
- I’m trying to set up a wider slot for the calendar - I’ve got the region expanded and adjusted, but how do I get the item slots to match?:

.region.top.center {
left: 40%;
-moz-transform: translateX(-40%);
-o-transform: translateX(-40%);
-webkit-transform: translateX(-40%);
-ms-transform: translateX(-40%);
transform: translateX(-40%);
min-width: 750px;
}
-
I’d like to get rid of the refresh fade. I find it annoying - how to do so?
-
When I have the “Seahawks” calendar enabled, only the trash calendar loads initially, and after first refresh, the others come in. Can you help with why?
{
module: 'MMM-CalendarExt2',
config: {
calendars : [
{
url: "https://calendar.google.com/calendar/ical/PRIVATE",
name: "Main Calendar", // Optional, Recommended
maxItems: 100,
scanInterval: 1000*60*1, // every minute, Appt Book, needs this speed
beforeDays: 0,
afterDays: 999,
maxIterations: 999,
forceLocalTZ: false,
},
{
url: "https://calendar.google.com/calendar/ical/PRIVATE2",
name: "Trash Calendar", // Optional, Recommended
maxItems: 100,
scanInterval: 24*60*60*1000, // Once a day
beforeDays: 0,
afterDays: 999,
maxIterations: 999,
forceLocalTZ: false,
},
{
url: "http://www.trumba.com/calendars/seattle-seahawks-schedule.ics",
name: "Seahawks Calendar",
maxItems: 100,
scanInterval: 24*60*60*1000, // Once a day (Is once a week acceptable???)
beforeDays: 0,
afterDays: 999,
maxIterations: 999,
forceLocalTZ: false,
},
],
views: [
{
mode: "daily",
position: "top_center",
slotCount: 99,
timeFormat:"h:mm A",
hideOverflow: false,
name: "Daily View",
className: "remove_empty_slot",
calendars: ["Main Calendar","Trash Calendar","Seahawks Calendar"],
transform: function(event) {
if (event.title.search("Recycle") > -1) {
event.icon = "mdi:recycle";
}
if (event.title.search("Yard Waste") > -1) {
event.icon = "entypo-leaf";
}
if (event.title.search("Seahawks") > -1) {
event.icon = "fa-solid:football-ball";
}
return event;
},
//
},
],
scenes: [
{
name: "DEFAULT",
},
],
},
},
Edit: I guess I have a fourth - I’d like to adjust anything to do with Seahawks (the transform above) to have the inverse color like an all day event. Possible?