MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MMRIZE
    3. Best
    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: My custom mirror

      @greedyvegan
      It will look better to arrange newsfeed module more harmonized.
      e8141981-add2-44af-a0f5-206b918e5e3d-image.png

      /* css/custom.css */
      /* This is just and example. Adjust to your color and dimensions */
      
      .MMM-anotherNewsFeed .newsfeed-image {
        min-width: 150px;
        min-height: 150px;
        max-width: 150px;
        max-height: 150px;
        margin: 10px 20px 10px 10px;
        border-radius: 15px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
      }
      
      .region .module.MMM-anotherNewsFeed {
        width: 600px;
        height: 300px;
        border-radius: 15px;
        margin-top: 0;
        background-color: #333; 
      }
      
      posted in Show your Mirror
      M
      MMRIZE
    • MMM-AlertExt

      MMM-AlertExt

      Alternative alert module for MagicMirror

      Demo

      Click to Youtube

      Click to Youtube

      Why?

      • I need a more decorated alert feature than the current default alert module.
      • Not only SHOW_ALERT, I want to see more various notifications and messages on the screen. (e.g. Log.log(), UnhandledExceptionError, CALENDAR_UPDATED notifications…)
      • I made this module for a kind of shared programmable output-presenter of some modules.

      https://github.com/MMRIZE/MMM-AlertExt

      posted in System
      M
      MMRIZE
    • RE: MMM-CalendarExt3 CSS issue with full day event text colors, and MMM-CalendarExt3Agenda

      @ZiggidyZ
      Good job. CX3 and CX3A use heavy CSS juggling, so it is not so easy for those who have not experienced this kind of work.
      The only thing I am worried about is that it seems you may modify the CSS file of each module directly.
      All custom CSS things should be performed in /css/custom.css by overriding for future-update-proof.

      posted in Custom CSS
      M
      MMRIZE
    • RE: ES6 notation

      @mumblebaj
      You can use “import()”, but need some tricks.

      • wait enough time to finish importing
      • or use promise to confirm loading finishes.

      I used that trick in my MMM-Scenes module to import modular mjs instead of global injections.

      posted in Development
      M
      MMRIZE
    • RE: My custom mirror

      @greedyvegan
      newsfeed item could have a container with selector withImage or not.

              <div class="container {% if config.showImage and image %} withImage {% endif %}">
                  {% if config.showImage and image %}
                      <div class="newsfeed-image" style="background-image: url({{image}})"></div>
                  {% endif %}
      

      So you can specify your style for each case, withImage or not.

      .MMM-anotherNewsFeed .module-content .container {
        text-align: right;
        ...
      }
      

      fc0671ae-8451-47b4-b647-4c515179fdb6-image.png

      .MMM-anotherNewsFeed .module-content .container.withImage {
        text-align: left;
        ...
      }
      

      7a295813-9cae-4c78-b023-736ab62634df-image.png

      Image and contents are arranged by container’s display:flex so you can reorder or justify with flex-related attributes.

      posted in Show your Mirror
      M
      MMRIZE
    • RE: MMM-Scenes2

      @mumblebaj
      Usually, implementing the suspend and resume methods of the MM module is useful when your module depends on expensive resources. When your module is inactivated, it would be better to stop consuming resource.
      But that mechanism is somehow annoying for me, so I ignore those methods. :D

      posted in System
      M
      MMRIZE
    • RE: custom css for module question

      @greedyvegan
      Like this?
      0f34aeea-496b-4673-97ff-2491fa2e0ca5-image.png

      /* css/custom.css */
      .region .container .module {
        padding: 20px;
        border-radius: 10px;
        background-color: rgba(255 255 255 / 10%);
        min-width: 300px;
        position: relative;
      }
      
      .module-header {
        position: absolute;
        top: -10px;
        left: 10px;
        background-color: darkslateblue;
        color: white;
        font-weight: bold;
        border: none;
        padding: 5px;
        border-radius: 5px;
      }
      
      posted in Custom CSS
      M
      MMRIZE
    • RE: electron-rebuild and MagicMirror v2.18 (and more)

      @Lusbueb
      Usually, No.
      Only the magic mirror module which use “native node module” needs it. but it would be hard to distinguish by a normal user.

      posted in Development
      M
      MMRIZE
    • RE: Change page with MMM-Pages

      @Egnos
      See how usage looks like.
      https://youtu.be/BcpZvkcrfHU

      posted in General Discussion
      M
      MMRIZE
    • RE: Help! - Adding and Changing Modules - Newbe

      @pillaresci
      Exactly what do you want to do? Let’s break one by one.

      posted in Troubleshooting
      M
      MMRIZE
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 12
    • 13
    • 4 / 13