A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • 2.17.1 error with MMM-DynamicWeather

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    AssassinsA
    @fozi:beaming_face_with_smiling_eyes: :beaming_face_with_smiling_eyes:
  • Font size changes

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    S
    @matt216 see https://forum.magicmirror.builders/topic/14862/help-with-a-couple-css-issues?_=1633443791518
  • sdetweil - issue with manual as well as automatic installer script

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    S
    @alextveit any update?
  • Error while loading shared libraries on new PI install

    Unsolved
    3
    0 Votes
    3 Posts
    868 Views
    I
    Yes I did install the lite OS . Wanted to run Raspberry Pi OS Lite to avoid all the overhead that comes with a Desktop version. I’ll install the desktop version and give it a try. Thanks for your quick reply!
  • Module Update Interval question

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    R
    I can confirm that this is now solved. Thank you, @sdetweil !
  • MMM-Tool stopped displaying in 2.17.1

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    FoziF
    @mmrize Thanks a lot for your response! After reading through my emails this morning, I deeply regret that you had to hand over ownership and maintenance of your modules. Apparently, your regrets are partially deeper than mine, when you see what happened to your babies. Last night, after @swvalenti pointed me to the new owner’s forum, I opened there an issue and requested support. A very nice guy tried to help me late at night, but in the end the owner himself closed and locked publicly my issue in an unexpected, rude and passively aggressive manor (see last comment in thread), of course without solving the issue. So, I solved quickly the issue by myself by kicking out the module from my config, as well as any other module maintained by the new owner. I am sorry, that it unfortunately hit your module, cause I liked it and I had it installed from the very beginning. Anyways, live goes on :sun_with_face:
  • HELP i have tryed to reinstall MM and now doesn't start

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    K
    @sdetweil i pretty sure that i did it… i will try again
  • npm start problem ELIFECYCLE

    12
    0 Votes
    12 Posts
    5k Views
    B
    Thank - that did the trick. Appreciated!
  • "Cannot find module 'valid-url'" after update

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    S
    @pattanner92 get the value of the class list and then check in your code it’s a string containing space separated words
  • MMM-AQI stopped working

    Unsolved
    8
    0 Votes
    8 Posts
    2k Views
    D
    @sdetweil I must have made a mistake when using your script command to upgrade: bash -c “$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/upgrade-script.sh)” After I backed-up altered files and modules, I used the command: git pull && npm install and the MMM-AQI module works again. Thanks for pointing me in the right direction!
  • Need Help Changing Background Image Based on Time

    Solved
    16
    0 Votes
    16 Posts
    3k Views
    M
    @tonkxy Just for reference, there is a similar module already. You’d better get a hint from it. https://github.com/BrianHepler/MMM-WeatherBackground It derive the background image from unsplash collections by weather and season condition(and ideally, everything if it can be translated and notified from any modules.)
  • Unable to upgrade MM to 2.27.1

    Unsolved
    3
    0 Votes
    3 Posts
    684 Views
    S
    @djboob66 wait. why unmerged files? git status to see what is going on
  • MMM-MonthlyCalendar(kolbyjack) event styling problem

    Solved
    1
    0 Votes
    1 Posts
    279 Views
    J
    NVM i got it working by removing everything under the var line Im having trouble editing the css of the events here(white boxes), i was able to add borders on them but cant edit the background and text color as i would like to. [image: VyjCoQx.png] I think the problem is because of this in the code but I’m not sure how to change it. I would like the background to be transparent and text color white(always) var div = el("div", { "className": "event", "innerText": text }); if (e.color) { var c = e.color; if (e.fullDayEvent) { div.style.backgroundColor = c; if (c[0] === "#") { var r, g, b, l; if (c.length < 7) { r = parseInt(c[1], 16) * 16 + parseInt(c[1], 16); g = parseInt(c[2], 16) * 16 + parseInt(c[2], 16); b = parseInt(c[3], 16) * 16 + parseInt(c[3], 16); } else { r = parseInt(c.substr(1, 2), 16); g = parseInt(c.substr(3, 2), 16); b = parseInt(c.substr(5, 2), 16); } l = 0.299 * r + 0.587 * g + 0.114 * b; if (l >= 128) { div.style.color = "black"; } } } else { div.style.color = c; } }
  • [RPI4][Buster] MM2 do not want to start

    Unsolved
    3
    0 Votes
    3 Posts
    488 Views
    karsten13K
    which raspberry pi os did you install? It must be one with desktop
  • MMM-CalendarExt2 freezing MagicMirror

    Unsolved mmm-calendarext2 freeze slow calendar
    2
    0 Votes
    2 Posts
    630 Views
    M
    @sg437 I think your ICAL URL might be wrong. Check that URL with the default calendar model. (See the log - what the module said.) And, I don’t recommend putting the upcoming view into the horizontal region. upcoming view has only one slot so it will not match with the horizontal layout. upcoming view in the vertical region or daily view, weeks view in the horizontal region is better. { module: "MMM-CalendarExt2", config: { firstDrawingDelay: 10, calendars : [ { name: "Tottenham", url: "https://www.google.com/calendar/ical/ovb564thnod82u5c4njut98728%40group.calendar.google.com/public/basic.ics", icon: "emojione:chicken" }, { name: "Leeds", url: "https://www.google.com/calendar/ical/h2suh4c1iqvktk4olmfqtth4lg%40group.calendar.google.com/public/basic.ics", icon: "emojione-v1:shield" } ], views: [ { name: "Upcoming", header: "Upcoming Game", mode: "upcoming", position:"top_right", calendars: ['Tottenham'] }, { name: "Daily", mode: "daily", position: "lower_third", calendars: [], type: "row", slotCount: 7, fromNow: -2, useEventTimeRelative: true, } ], scenes: [ { name: "DEFAULT", views:[], }, ], } }, [image: 1633070659266-69a93edb-5e47-4a6a-a254-55953e74993c-image-resized.png]
  • First four-five modules showing, the others are not

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    T
    @sdetweil Luckily, it was the very next one- the default compliments module. I haven’t taken the time to see what is wrong with it. Since everything works now, I’ll leave it disabled until I have time to figure it out.
  • 1 Votes
    4 Posts
    660 Views
    S
    @rikan I have only seen send a notification, or exec a program its not my module, just what I have read and little I have done with it
  • Pi 4 B 4GB

    Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    ankonaskiff17A
    @sdetweil Anything to be done for it? When I have just MM running all is well . Just seems to be a problem when editing. So that is coming from the origin point of link? It is national radar from NWS and I don’t update it locally in config.js I’ll swag this and guess it generates that Vuex stuff locally when the NWS updates the radar image remotely?
  • Calendar Ext2 positionOrder

    Solved
    9
    0 Votes
    9 Posts
    2k Views
    H
    @mmrize you’re exactly right. I will plug in the position order like you have and see what I get. Thanks :)… I was up till 2AM very irritated I couldn’t get it right lol.
  • MagicMirror on Windows 10

    Unsolved
    2
    0 Votes
    2 Posts
    348 Views
    S
    @esim how did u install? there are some steps that don’t complete correctly on windows. do this cd MagicMirror/vendor npm install cd ../fonts npm install cd .. now u can npm start