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: Can somebody verify that I'm on the right path for a 24x36 Magic Mirror?

      @poopflavoredcake

      do you NEED a ‘mirror’ in the kitchen?

      One more vote.

      32 Inch Monitor (I read that VA panels have better black levels so decided for this one): $271

      Wow, the monitor itself looks really good. But in my opinion, it’s somehow overkill. Generally, MM and your Pi don’t need such a high spec: 165Hz, 1ms, … MM is not game machine or Netflix player.
      And if you really assemble Spymirror on your screen, you may lose some of the benefits of those high-class monitors.

      A bigger screen would be heavier. It needs more robust frames and mounting methods, and thermal control must also be considered for that kind of monster.

      Even though RPI 4 can handle up to 4K60p (3840x2160), It would be a burden for RPI4. If you are considering playing clips on your MM, you may need a stronger device.

      So, what is your purpose? Your types of equipment would depend on your needs.

      posted in Tutorials
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      @bobbylx
      To emphasize this month, I added this to the cells of this month.

      .CX3 .thisMonth {
        background-color: rgb(255 255 255 / 10%);
      }
      

      rgb(RED GREEN BLUE / TRANSPARENCY); could be what you were searching.

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      @bobbylx
      For today cell border; Append this into your css/custom.css

      /* css/custom.css */
      .CX3 .cell.today {
        border: 2px solid #fff; /* default was 1px, so you can change to 2px or whatever */
      }
      
      For shadow behind the cell... Could you tell me more details or example?
      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3 How to define font size based on number of weeks in month

      @ascii27
      At this moment, impossible. (Maybe you can manually adjust CSS with the year and month dataset, but it could not be very pleasant and bother things.)
      But I’ll consider it in the next update.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda Problems with symbols

      @Vauxdvihl
      Share your custom.css and config.js with me. (eouia0819@gmail.com)

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda Problems with symbols

      @Vauxdvihl
      It’s normal. It is designed so. ^^;;;; (I hated too many symbols and colors, personally. That is the reason. :D)
      If you want to show the symbol even in fullday event,
      Append this into your custom.css

      .CX3A .cellBody .fullday .event .headline.useSymbol .symbol {
        display: inline-block;
        color: var(--oppositeColor);
      }
      
      .CX3A .cellBody .fullday .event .headline.useSymbol .symbol * {
        display: inline-block;
      }
      
      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3 and MMM-CalendarExt3Agenda => Symbol increase

      @Vauxdvihl

      Select what you need and append them into your css/custom.css

      1. CX3 symbol only resize
      .CX3 .event .headline.useSymbol .symbol {
        font-size: 20px; /* Or whatever you need. The default value is 75% of `.CX3 { --fontsize }` */
      }
      
      1. CX3 whole module resize
      .CX3 {
        --fontsize: 22px; /* Or whatever you need. The default value is 18px */
      }
      
      1. CX3A symbol only resize
      .CX3A .event .headline.useSymbol .symbol {
        font-size: 20px; /* Or whatever you need. The default value is 75% of `.CX3A { --fontsize }` */
      
      1. CX3A whole module resize
      .CX3A {
        --fontsize: 18px; /* Or whatever you need. The default value is 16px */
      }
      

      }

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda console error

      @Vauxdvihl
      You failed installation. Reinstall with instruction.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3 show description instead of title in event

      @mrbaloo1337

      eventTransformer: (ev) =>{
      	const targetCalendars = [ 'SpecificCalendarName', 'AntotherCalendarName' ]; // Fulfill the calendar names you want to apply.
      	if (targetCalendars.includes(ev.calendarName) && ev.description) {
      		ev.title = ev.description
      	}
      	return ev
      }
      

      Add this into your CX3 configuration.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3 show description instead of title in event

      @mrbaloo1337
      For specific calendar? Or for all calendars?

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3 Problems with iconify symbols

      @Vauxdvihl
      Try twemoji:crossed-swords. The module recognizes iconify icons by group:symbolname format.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda

      @htilburgs
      But I’m sorry, I forgot to implement that feature until now. :D.(nobody found it was not implemented )I fix it now. You can update the module and use that instanceId selector. Sorry again. :D

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda

      @htilburgs
      You can give instanceId for each instance. Then you can specify CSS selector with that instanceId.

      /* config/config.js */
      module: 'MMM-CalendarExt3Agenda',
      position: 'top_left',
      config: {
        instanceId: 'mymodule1',
        ...
      
      /* css/custom.css */
      .CX3A_mymodule1 .agenda { // You can select a specific instance like this.
        display: none;
      }
      

      f09c5d43-5fe6-4f1c-ab85-e7d638146b28-image.png

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda

      @htilburgs
      60739a0d-fd61-4047-ba25-2b40666a61b3-image.png

      posted in Utilities
      M
      MMRIZE
    • RE: What is this ribbon?

      @davidgagne
      :) You can purchase additional Pi Cam’s as if you want.

      posted in Hardware
      M
      MMRIZE
    • RE: What is this ribbon?

      @davidgagne
      It might be the camera cable.
      https://www.welectron.com/Arducam-B0210-for-Raspberry-Pi-Zero-Camera-Cable-Set?utm_campaign=gs&gad_source=1&gclid=CjwKCAjwmYCzBhA6EiwAxFwfgGfpvHVN1Td-0qEtGGk6OUDyGZ6ZqDpMiXynlBPKdfrWk65Rm_GimBoC6QcQAvD_BwE

      posted in Hardware
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda

      @cyberphox share me your config.(eouia0819@gmail.com)

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda Stopped Showing Events

      @geronimodupree
      There was a bug. I updated.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda only showing a few days of items

      @Como @schwarem
      There was a bug from the previous update. It has some logic issues about out-of-current-month ranging. I fixed it in 1.4.5. Plz, Update module and try it again. Sorry for bothering you guys.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda Stopped Showing Events

      @geronimodupree
      I’ll look inside.

      posted in Troubleshooting
      M
      MMRIZE
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 47
    • 48
    • 7 / 48