MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MMRIZE
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 9
    • Topics 29
    • Posts 952
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: [HOW_TO] MagicMirror as Desktop Wallpaper (all platform : updated)

      @OscarVsp
      You can check whether MM is really ‘most-bottomed’. Adjust some CSS to check whether MM is “COVERING but just transparent” against other icons or applications.

      posted in Tutorials
      M
      MMRIZE
    • RE: [HOW_TO] MagicMirror as Desktop Wallpaper (all platform : updated)

      @OscarVsp

      I’ve tested MacOS and Windows, but not Linux, sorry. But Electron Manual says type: 'desktop' options would work on Linux Environment too.
      What kind of Linux are you using?

      posted in Tutorials
      M
      MMRIZE
    • RE: Does 'weather' module broadcast the forecasting?

      @ankonaskiff17
      I need weather information (current status or some days forecasting) to be used in my other module. For example, changing the background or colour theme by current weather status. or registering upcoming weather events on the calendar, etc…
      It will be more efficient when the existing weather module data could be accessible instead of implementing another new weather parser for that purpose.

      posted in Requests
      M
      MMRIZE
    • Does 'weather' module broadcast the forecasting?

      As title,
      Does weather module broadcast the notification? Old currentweather emitted, but not sure of the new module. Does anyone know?

      posted in Requests
      M
      MMRIZE
    • RE: MMM- Google Photos error install

      @demzykster
      I think you did ‘npm install’ in wrong directory.(maybe /modules directory instead of /modules/MMM-GooglePhotos , I guess)

      posted in Troubleshooting
      M
      MMRIZE
    • MMM-CalendarExt3

      MMM-CalendarExt3

      New MagicMirror module for calendar view. (successor of MMM-CalendarExt2)

      Screenshot

      screenshot

      Concept

      My previous module, MMM-CalendarExt2, was always notorious for its difficulty to use. I need a more easy and light one. So I rewrite this from scratch newly.

      Features

      What’s different with CX2.

      • Only focusing on how it shows; Parsing is delegated to original MagicMirror module calendar. (It means the calendar module is REQUIRED to use this module.)
      • Only week and month views. I found that people are rarely interested in other views on CX2. So I drop out different views.
      • Respect to original MM’s hide/show mechanism. Now you can hide/show this module easily with other scheduler or control modules. (By the way, Look at this module also. - MMM-Scenes)
      • No dependency on the 3rd party modules (e.g. momentJS or Luxon, etc.). This is built with pure JS and CSS only.

      Main Features

      • week view or month view
      • locale-aware calendar
      • customizing events: filtering, sorting, transforming
      • multi-instance available. You don’t need to copy and rename the module. Just add one more configuration in your config.js.

      DETAILS : https://github.com/MMRIZE/MMM-CalendarExt3

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-Calendar Ext2 google calendar colors

      @fedale

      1. Impossible to inherit Google’s colour setting (The event itself has no information about how it shows in Google calendar)

      2. You can transform your event to get a different CSS className by the condition of events.
        See the Sort, Filter, Transform parts of MMM-CalendarExt2 documents.

      posted in Custom CSS
      M
      MMRIZE
    • RE: Raspberry pi performance

      @Nneuland
      Check this; https://raspberrytips.com/time-sync-raspberry-pi/

      posted in Hardware
      M
      MMRIZE
    • RE: *REQUEST* how to make calendar event colored according to title string found?

      @M1st3r-E
      You can use transforming in view configuration.

      transform: (event) => {
        if (event.title.search("Birthday") > -1) { // If the event might include "Birthday" in its title,
          event.className = "BirthdayTitle"; // Assign new CSS class name of that event to "BirthdayTitle"
        }
        return event; // Return that event.
      };
      

      event object could have these properties;

      calendarId: 1;
      calendarName: "Tottenham";
      className: "mySoccerClass";
      description: "FA Cup, round 3";
      duration: 7200;
      endDate: "1546638300";
      endDateJ: "2019-01-04T21:45:00.000Z";
      icon: "noto-soccer-ball";
      isFullday: false;
      isMoment: false;
      isOneday: true;
      isPassed: false;
      isRecurring: false;
      isCancelled: false;
      location: "";
      startDate: "1546631100";
      startDateJ: "2019-01-04T19:45:00.000Z";
      title: "Team T.B.A. - Tottenham Hotspur";
      uid: "1:1546631100:1546638300:op54vk5s1r0ivl8i165ampip88@google.com";
      ms_busystatus: "BUSY"; // Only for calendar from MS Outlook. Available : "BUSY", "FREE", "TENTATIVE", "OOF"
      
      posted in Custom CSS
      M
      MMRIZE
    • RE: MMM-MyVolvo

      @MZ-BER
      I was the original author @eouia, that module was built for my own purpose.
      Nowadays, I changed my car to Tesla, so I couldn’t maintain that module anymore.
      It’s nice to hear @MZ-BER keep the module advanced. I’ll leave the comment on my repository for a visitor who needs Volvo module to use yours.

      posted in Transport
      M
      MMRIZE
    • RE: MMM.WEDGET need help

      @tanvir586
      Usually not possible. Unless your widget has that kind of feature (size adjust), it couldn’t.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MagicMirror server OS question

      @sifuhall
      If your os can handle nodejs, electron and chromium, it could be.
      But some modules or features might not be compatible with yours.
      Especially sever mode, nodejswould be only the issue.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-NotificationTrigger second trigger not working

      @arynio

      https://github.com/MichMich/MagicMirror/blob/26a76f80d63e5c9746b6db712d6901219f8b6b93/js/main.js#L97-L99

      if (module !== sender && (!sendTo || module === sendTo)) {
        module.notificationReceived(notification, payload, sender);
      }
      

      module.notifcationReceived() doesn’t work when the recipient module and the sending module are the same.
      A module cannot hear its voice.

      If you want to use a chained shell commands with delay, make .sh file and execute it.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-NotificationTrigger second trigger not working

      @arynio
      I haven’t tested. But as far as I know, a notification from the module itself would not be heard by itself to prevent infinite loop possibility.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt2

      @gekberlin
      RelativeTime would be auto-scaled by remain period to target time from now on. So “tomorrow” is displayed as “in X hours” because after X hours the tomorrow will begin. “In 10 days” means exactly “in 10days and a few hours”
      So it is not so desirable to display exact time, especially fullday events.
      Use dateFormat or dateTimeFormat. See the localization part also.

      RelativeTime itself is more useful when you use it to display near events in 24 hours.

      posted in Utilities
      M
      MMRIZE
    • RE: TelegramBot runs multiple times

      @cfenner
      It doesn’t work on multi-instances. If you run two fronts ui at the same time, the error will happens.
      How to overcome? Well, there be almost no solution for that.
      Maybe you can modify node_helper.js not to execute one more instance from another front but I’m not sure that is what you really want.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Help creating a full screen module linked to weather

      @night_pr0
      Cheers.
      Ref. MMM-WeatherBackground, it is not video player but wallpaper something. Anyway you can get an idea.

      posted in Development
      M
      MMRIZE
    • RE: MMM-GooglePhotos - Reaching quota but don't know why

      @bhaules

      Just memo;
      It seems Indexing 50 photos took around 3~4 seconds. (It is too slower than I expect) 5000 photos will take 3000~4000 sec, = around 50 ~ 60minutes.
      But your scanInterval is 10 minutes. It might be the reason? Before finishing the previous scanning cycle, a new cycle might begin.

      As I mentioned earlier on github, scanning 5thousands photos every 10 minutes to show random 5 pictures in that 10 minutes, seems not so much efficient.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM Google Photos error

      @sultan-y
      Which position did you put the module into? set the position fullscreen_below.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Multiple instance module. Scope for a noob.

      @birdabirda
      ADD to A5.

      However, there are some tricks that can be used between node_helper and your instance to make dedicated communication.

      • HTTP connection : your node_helper can serve its own web server that can provide URL endpoints for request/response methods. Your front-end module instance could access the dedicated URL.
      • websocket or similar technics.
      posted in Development
      M
      MMRIZE
    • 1
    • 2
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 43 / 48