Here are pics of my 2nd MagicMirror without a mirror. Had so much fun making this one!
Here are pics of my 2nd MagicMirror without a mirror. Had so much fun making this one!
Tinker with the Calendar to get previous, current and Next month…
@Mykle1 I saw the ISS south of us this morning. Naked eye was good enough 😀 since it reflects the sun, it’s very visible.
Following Mykle1’s lead I just have to try MagicMirror on the MacBook white running Ubuntu - server mode 😀
So sorry for the late reply…here’s an example of what I changed…
// Override dom generator
getDom: function() {
if ((moment() > this.midnight) || (!this.loaded)) {
var month = moment().add(1,'months');
var year = moment().year();
var monthName = moment().add(1,'months').format("MMMM");
var monthLength = moment().add(1,'months').daysInMonth();
// Find first day of the month, LOCALE aware
var startingDay = moment().add(1,'months').date(1).weekday();