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
    • 1 / 1