A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • https://github.com/njwilliams/MMM-PlaceInfo not loading

    Solved
    10
    0 Votes
    10 Posts
    1k Views
    Z
    @sdetweil @lmhmm I finally managed to get the module running. I used the following fork https://github.com/magicmirror-sdmy/MMM-PlaceInfo Thanks once again for the help from you both
  • How to synchronize pictures from mobile to the MM?

    Unsolved
    18
    1 Votes
    18 Posts
    4k Views
    C
    In addition if you use dropbox on a windows-pc you can fully manage the image folder there. rclone does the rest for you on the pi.
  • Error in the calendar module check logs for more details

    Solved
    14
    0 Votes
    14 Posts
    2k Views
    S
    @nowayto if the network is busy, all kinds of problems
  • DS18b20 issues

    Solved
    3
    -1 Votes
    3 Posts
    411 Views
    B
    I used a work through from Sam called “module not found error loading module in MagicMirror” dated Oct. 22/ 2021
  • MMM-Wallpaper notification and MMM-ModuleScheduler

    Solved
    5
    0 Votes
    5 Posts
    592 Views
    S
    Thanks Sam. I had it as schedules but it has to be notification_schedule. This works now.
  • Electron error? js error? Javascrpt error?

    Solved
    7
    0 Votes
    7 Posts
    1k Views
    S
    @Dayzwell awesome!!
  • Issues with MMM-Button

    Solved
    7
    0 Votes
    7 Posts
    1k Views
    S
    @schlomm said in Issues with MMM-Button: @sdetweil You’ve said that I only need to change some settings in the rasp-config. Do you have any additional information what needs to be changed? I updated my post, I was incorrect
  • Calvin and Hobbs

    Solved
    18
    0 Votes
    18 Posts
    4k Views
    plainbrokeP
    @karsten13 Done, Thank you. Working like it should now.
  • MM very slow to change

    Unsolved
    11
    0 Votes
    11 Posts
    3k Views
    C
    @sdetweil many thanks!! I will have a look at this and see how to do it and fix the issue! very grateful!
  • MM Windows 11 install - 3rd party modules won't work

    Solved
    9
    0 Votes
    9 Posts
    1k Views
    S
    @lvolkjr the default weather module, using the OpenWeather provider uses the same api url…
  • Wayland question

    Solved
    10
    0 Votes
    10 Posts
    1k Views
    S
    @schlomm awesome, thanks for the feedback
  • iPad 2 IOS 9.3.5 - missing modules

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    F
    @khrusher Great to see it helps others :)
  • Magic Mirror runs twice on boot

    Solved
    8
    0 Votes
    8 Posts
    4k Views
    S
    @ByronJames never seen this happen What OS is this?? Technically a second instance should fail as the port is in use by the first instance.
  • MMM-WhisperGpt

    Unsolved
    1
    0 Votes
    1 Posts
    313 Views
    F
    Hello. I have Installed the Whispergpt modul now i dont know how i Create the url of the mimic3 and the whisper and if i need other modules to install like mimic3 or more. Thank you for your answers: Kind Regards Future Mirror
  • Touch Screen TFT LCD SPI Displays Blank Screen

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    G
    @rkorell said in Touch Screen TFT LCD SPI Displays Blank Screen: @garnoopy Do you have enabled SPI on your pi? And: Do you have configured the correct overlays for running the 3,5‘‘ Display? Regards, Ralf Browser does open and I can load web pages.
  • no font on ext3timeline

    Unsolved
    13
    0 Votes
    13 Posts
    2k Views
    S
    @mischag ok, color, opaqueness whats above that fontsize custom.css was used didpkay:none; would hide it too
  • three mm processes. How to delete one?

    Solved
    4
    0 Votes
    4 Posts
    563 Views
    E
    @sdetweil I was able to successfully use “pm2 delete 2” and save my efforts. The mirror seems to be responding faster now. Thanks for your help.
  • MMM-GooglePhotos suddenly stopped working this morning

    Solved
    26
    0 Votes
    26 Posts
    7k Views
    S
    @Jabl0 weird
  • Restart MagicMirror once a day

    Unsolved
    13
    0 Votes
    13 Posts
    2k Views
    S
    @mumblebaj the problem is we are passing back data, and not the response object and we didn’t check to see if the response was valid(statusCode==200), and after that sometimes the data is trash if you have MM installed, you HAVE the repo!
  • CalendarExt3 inline-block and colors

    Unsolved
    7
    0 Votes
    7 Posts
    964 Views
    S
    @sankum just for discussion on a couple points from your image above [image: 1747663143318-1746897279242-screenshot-at-2025-05-10-12-14-08-resized-resized.png] in the css stack pane on the right, you see .CX3 .weekend has a couple styles, specified in MMM-CalendarExt3.css, line 385 and one of those styles has a strikethru, color an item higher up in the stack list, also shows a DIFFERENT class .CX3 .weekend_1 that ALSO specifies the same style, from the same file but line 394 (further down is processed later, so it overrides stuff set ABOVE this line…(cascading) so you can see the style(and where its set) , see it is overridden(and from where) and the element selected (left side of element view) shows BOTH classes applied NOW , this second style setting/weekend_1 demonstrates a problem, as you MODIFIED the module shipped file of css settings… and next time the module wants to update, it will FAIL as you changed one of ITS files… MM is designed to avoid this problem, you place ALL ‘custom’ (local to you) css in the file MagicMirror/css/custom.css we load this file LAST, so it overrides ANYTHING set before it was loaded… base, module, or anything higher in custom.css too…