A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Cannot access mirror

    Solved
    9
    0 Votes
    9 Posts
    724 Views
    S
    @rkorell yes meant grep ssh good info on ps failure impacts
  • Default Calendar Symbols

    Unsolved default calendar symbols
    4
    0 Votes
    4 Posts
    305 Views
    S
    @almightyyoshi you can always use css .CX3 .symbol { display: none !important; }
  • MMM-calendarext3 wrong month

    Solved
    7
    0 Votes
    7 Posts
    343 Views
    R
    @sdetweil I changed it back now it works again thanks!
  • Lost Swipe functionality

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    S
    @sdetweil Correct, not sure why I wrote buster when os-release clearly stated bookworm.
  • MMM-calendarExt3 filter agendas

    Solved
    11
    0 Votes
    11 Posts
    1k 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
    518 Views
    S
    @British_Kiwi its running, dont worry about the warnings
  • mmm-calendarEXT3 multiple questions

    Solved
    3
    0 Votes
    3 Posts
    263 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
    3k 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
    975 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
    560 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
    779 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
    509 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
    229 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
    2k 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
    377 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
    2k 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
    344 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
    296 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
    2k 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
    2k Views
    S
    @falter same thing to Me, another ditch I dont need to go into! Lol