A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • MMM-calendarExt3 filter agendas

    Solved
    11
    0 Votes
    11 Posts
    399 Views
    S
    @redux703 calendarSet should only pick the different default calendar (s) the filter function allows you to check different event characteristics, title, date…
  • further errors

    Solved
    6
    0 Votes
    6 Posts
    165 Views
    S
    @British_Kiwi its running, dont worry about the warnings
  • mmm-calendarEXT3 multiple questions

    Solved
    3
    0 Votes
    3 Posts
    127 Views
    R
    @sdetweil Thanks! This worked like a charm. Also had to add to normal calendar module
  • MagicMirror is Failing to start at all

    Solved
    18
    0 Votes
    18 Posts
    972 Views
    S
    @sdetweil That worked i picked the right start because there is apparently 2 of them in the text code
  • Electron Browser Crashing?

    Unsolved
    8
    1 Votes
    8 Posts
    453 Views
    D
    I’ve been rotating through disabling modules on my Mirror. I have currently disabled MMM-Pinfo, and have not noticed a crash recently. Noting it here for posterity. I’ll create an issue on Github if I get more confidence that it’s that module.
  • MMM-IMagesPhotos - setting up caching

    Unsolved
    7
    0 Votes
    7 Posts
    198 Views
    S
    @Nneuland I posted the property model and the switch name I think you can cut/paste I don’t know what cache value is helpful
  • default Calender Two calender with different update time

    Solved
    9
    -2 Votes
    9 Posts
    295 Views
    S
    @Blackmirror i am wrong. based on the code (not the doc) you can have a unique fetchInterval by url to override the base config value so you only need one calendar instance
  • PM2 autostart script not working since last MM update

    Unsolved
    6
    0 Votes
    6 Posts
    219 Views
    S
    @meshuggahn i have no idea, this directory /run/usr, seems to be related to flatpack, but i have not seen nodejs/npm in flatpack packages
  • Google Calendar error during Authorize

    Unsolved
    2
    0 Votes
    2 Posts
    109 Views
    S
    @RonR i dont know that module. we provide support for google calendars as part of the base package. get the ical format url, public or private and put that in the url: property see the startup config.js which uses a calendarlabs url to get the url open your calendar in a web browser, select the specific source in the left nav, click the 3 dot menu to the right, settings scroll down to sharing, select the ical format url (not embed) or secret url
  • Installer scripts on Raspberry Pi Zero 2 W

    Unsolved
    14
    0 Votes
    14 Posts
    609 Views
    S
    @kribbitykrab if you ran the fixuppm2 script it would have setup MagicMirror to start on boot I made separate scripts for the extra steps used in the installer in case one needed to do it manually, or changed their mind (fox example, didn’t want pm2 at install, but does now) the modules update independently
  • Black screen on Surface RT running Raspbian OS (for ARM).

    Unsolved
    4
    0 Votes
    4 Posts
    136 Views
    S
    @JS999 if you have ssh enabled you can do it over the ssh session
  • How to Swipe between pages

    Unsolved
    19
    0 Votes
    19 Posts
    881 Views
    N
    @seabass For me the following cofiguration ist working fine with every Touch Display I’m using. (Surface, Dell Touch Monitor, HP AIO Touch) I using this module. MMM-Touch and also MMM-Pages { module: "MMM-Touch", position: "top_center", classes: "", disabled: false, config: { debug: false, useDisplay: false, autoMode: false, defaultMode: "default", gestureCommands: { "default":{ "TAP_1": (commander) => {commander.sendNotification("USER_PRESENCE", true);}, "SWIPE_RIGHT_1": (commander) => {commander.sendNotification("PAGE_DECREMENT", null);}, "SWIPE_LEFT_1": (commander) => {commander.sendNotification("PAGE_INCREMENT", null);}, "SWIPE_DOWN_1": (commander, gesture) => {commander.sendNotification("ARTICLE_PREVIOUS")}, "SWIPE_UP_1": (commander, gesture) => {commander.sendNotification("ARTICLE_NEXT")}, "SWIPE_DOWN_2": (commander, gesture) => {commander.sendNotification("BACKGROUNDSLIDESHOW_PREV")}, "SWIPE_UP_2": (commander, gesture) => {commander.sendNotification("BACKGROUNDSLIDESHOW_NEXT")}, //"DOUBLE_TAP_1": (commander) => {commander.sendNotification("LOAD_NEXT_WALLPAPER", null);}, "SWIPE_LEFT_2": (commander) => {commander.sendNotification('CX3_GET_CONFIG', {callback: (before) => {commander.sendNotification('CX3_SET_CONFIG', {monthIndex: before.monthIndex + 1,callback: (after) => {setTimeout(() => { commander.sendNotification('CX3_RESET') }, 60_000)}})}})}, "SWIPE_RIGHT_2": (commander) => {commander.sendNotification('CX3_GET_CONFIG', {callback: (before) => {commander.sendNotification('CX3_SET_CONFIG', {monthIndex: before.monthIndex - 1,callback: (after) => {setTimeout(() => { commander.sendNotification('CX3_RESET') }, 60_000)}})}})}, }, } }, },
  • Nodejs version/update issue

    Solved
    2
    0 Votes
    2 Posts
    163 Views
    S
    @lightsaberluke yes, system is tricky sometimes if you had used the install or upgrade script it would have handled this problem for you see https://github.com/sdetweil/MagicMirror but you can use one of the selective node tools i recommend n do this sudo npm install n -g sudo n 22.14 hash -r node -v you should now have node 22.14 or 22.15 now cd ~/MagicMirror npm run install-mm
  • Nudging a Module to different location?

    Unsolved
    3
    0 Votes
    3 Posts
    195 Views
    plainbrokeP
    @Durahl Here is a little example of What Sam said to do. Not sure what module you are trying to do that with but this will give you the idea of what to tweak in the ctrl+shift+i screen. .MMM-Cocktails { Margin-top: 30px; Margin-left: 140px; Margin-right: 120px; } Hope this makes it a little clearer for you. PS: You can look in the modules css file for the .XXX-XXXXX name to use if you have the same difficulty I do with the window thingy… <— Technical term.
  • MMM-JsonTable - error and does not load

    Solved
    19
    0 Votes
    19 Posts
    1k Views
    S
    Sam, Yes, it was the file content. I had copied it from the git example but obviously did something wrong.
  • Different order in center after Upgrade to 2.32

    Unsolved
    21
    0 Votes
    21 Posts
    1k Views
    S
    @falter same thing to Me, another ditch I dont need to go into! Lol
  • MM install script failure on fresh install of Raspian

    Solved
    9
    0 Votes
    9 Posts
    381 Views
    unfriendlydeviceU
    @sdetweil Sadly another failure I’ve emailed the log.
  • Missing custom.css breaks entire layout

    Unsolved
    7
    1
    0 Votes
    7 Posts
    325 Views
    plainbrokeP
    @sdetweil You are more than likely correct the sd card has started to fail. That is why I went to the M.2 ssd’s they do not seem to fail as often as USB drives did for me. and I have gave up on sd cards on anything that I do not HAVE to use them in… I suppose if I would fork out the money for the better ones maybe they would last longer… Sorry to Hijack your post. @arh
  • Update breaks MM

    Solved
    4
    0 Votes
    4 Posts
    250 Views
    S
    @ReD1470 dont use force unless i tell you. it skips some checks that are useful. its not documented intentionally.
  • need help installing MMPM - losing my mind

    Unsolved
    11
    0 Votes
    11 Posts
    1k Views
    S
    @Cote289 did you get this resolved?