A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Synology Docker Tutorial?

    Unsolved
    15
    0 Votes
    15 Posts
    6k Views
    S
    @wishmaster270 my 416j+ doesn’t officially support docker, so there is no ui.
  • Weather module does not load

    Unsolved
    11
    0 Votes
    11 Posts
    2k Views
    K
    @canlio ty for this post and updates how you fixed it. Had same problems, did same workaround and, atleas for now, its working
  • MMM-CalendarExt3 help

    Unsolved
    5
    0 Votes
    5 Posts
    470 Views
    J
    @MMRIZE After asking my question yesterday I left MM running for awhile, not sure why but eventually it had all events from all calendars showing, I’m guessing as sdetweil said the number of Events since my wife and oldest have more events individually than the rest combined and they seem to be loading last. I guess my “test” viewings need to be longer than 30 seconds. I do appreciate the quick responses and also the ability to use your module. Cheers and Happy Holidays, jrd
  • MM on RPi3 is Extremely Slow

    Unsolved
    4
    0 Votes
    4 Posts
    538 Views
    S
    @raspberrypi9 do free -m this will tell you how much memory and swap space you have and are used. swap on sd cards is terrible
  • /usr/local/bin /node: cannot execute

    Unsolved
    4
    0 Votes
    4 Posts
    547 Views
    S
    @sdetweil i run my pi5 on 256 gig nvme using 64 bit os
  • EACCES: permission denied, open js/positions.js

    Unsolved
    7
    0 Votes
    7 Posts
    539 Views
    S
    @A_Nameless_Ghoul just btw i added a trap the actual error and I added a new message if this occurs
  • MM Freezes with Raspberry Pi 3 But Not Raspberry Pi 4

    Unsolved
    10
    0 Votes
    10 Posts
    890 Views
    karsten13K
    @raspberrypi9 this can be caused by a specific module so you can try disabling one by one …
  • Run two instances of the same module (sometimes) Tutorial

    2
    1 Votes
    2 Posts
    1k Views
    L
    @Mykle1 Worked first time for the MMM_DateCounter module. Thank you!!
  • Electron quit periodically

    Unsolved
    26
    0 Votes
    26 Posts
    4k Views
    J
    @sdetweil my setup is pretty simple.
  • Question: Having a module span entire screen?

    Solved
    4
    1
    0 Votes
    4 Posts
    575 Views
    S
    @cgillinger awesome
  • New install - (npm run install-mm) - returns errors

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    S
    @lostagain my upgrade script will do it too between releases
  • Modulo MMM-TelegramBot screenshot

    Solved
    7
    2
    0 Votes
    7 Posts
    692 Views
    N
    Alright, the issue was resolved after restarting. Thank you so much for the help!
  • Pull up Terminal in Magic Mirror ISO Install

    9
    0 Votes
    9 Posts
    2k Views
    S
    @bhepler Thanks for this tip. Came looking for this, and found your post.
  • Updated MM and OpenWeather doesn't work now.

    Unsolved
    7
    0 Votes
    7 Posts
    938 Views
    S
    @vietscong @RF just a reminder to all the doc is linked in the header above, so you don’t have to remember where to find it. [image: 1734378788727-screenshot-at-2024-12-16-13-51-28.png]
  • Change size and / or font from different modules ?

    Unsolved
    2
    0 Votes
    2 Posts
    412 Views
    S
    @aldisachen yes, using styles, css, you can change all the content. BUT it is module by module some (the default modules for sure) use the generic styles we provide. see css/main.css each module should document in a css file in their folder how they use those styles the css architecture allows one to override styles later, in MagicMirror by adding info into custom.css. a css entry is selector_clause { styles applied to the elements selected } the selector clause can be simple or complex first char as a dot means class (class= on an html tag) as a pound sign means id (id= on an html tag) none means an html tag (img, table…) a class holds a collection of styles font-size, color, font, etc css allows you to override styles later one or more styles at a time each module name is used in a class on the surrounding html div of the content the module creates that way you can target just one modules content in their selector with .module_name if a module doesn’t give a good way to alter its styles you can still select the html elements see the second link in my signature below for an example of how to use the browser developer window elements tab to examine and test style changes to determine what should go in custom.css
  • Fails to start... "Log.log is not a function"

    Unsolved
    16
    0 Votes
    16 Posts
    2k Views
    S
    @Bimtronic use my backup/restore scripts yo save your MagicMirror setup https://github.com/sdetweil/MagicMirror-backup-restore then you can rename/delete the MagicMirror folder and use my install script see https://github.com/sdetweil/MagicMirror_scripts and then use restore to put the MagicMirror configuration back
  • "npm run start" does not work. Returns "sh 1 ./node_modules/.bin/electron not found"

    Solved
    14
    0 Votes
    14 Posts
    3k Views
    S
    @tony-72 nano is the built in text editor, its text only vscode goes in system folders, has nothing to do with MM you could try my MMM-Config module which generates a form for config… https://github.com/sdetweil/MMM-Config also see this https://forum.magicmirror.builders/topic/19193/best-way-to-develop-from-windows-machine see the first link in my sig below for installing modules… (I didn’t write it)
  • Switch URL based on value

    Solved
    10
    0 Votes
    10 Posts
    954 Views
    S
    @htilburgs said in Switch URL based on value: So with the “promise” statement, it looks like I can eleminate the node_helper.js correct, now that electron (and nodejs) have fetch built in(since node 18), you don’t NEED to use node_helper to do it
  • Multiple URL Querys to fill JSON

    Solved
    10
    0 Votes
    10 Posts
    869 Views
    htilburgsH
    @MMRIZE Thanks for your reaction.
  • 0 Votes
    3 Posts
    435 Views
    A
    @sdetweil Thanks Sam. Finally found the fix. In config if there is no APIkey2 then it has to be null so commented it out. //apikey2: "SUPER SECRET!!!",