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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt2

      @marva82 My statement was functionally correct. Yeah, I forgot to use the overused “Use custom.css” mantra

      (Which in this case, don’t really matter, as if you’d adjust MMM-CX2’s css stub, it’ll likely never get overwritten as the projects effectively dead)

      And yes, you can remove the Week of the year with your stub.

      posted in Utilities
      BKeyportB
      BKeyport
    • RE: Automatic checking of all MagicMirror² modules

      @KristjanESPERANTO I figured that’s what it was. Not a big deal - everyone here don’t speak english properly, even us native speakers. 🤣`

      posted in Development
      BKeyportB
      BKeyport
    • RE: Config error

      You have to be in the MM directory, FWIW.

      I have a script set up in my root directory:
      cd ~/MagicMirror
      npm run config:check
      cd ~

      posted in Troubleshooting
      BKeyportB
      BKeyport
    • RE: WHY is Mykle1 such a forum god?

      @mykle1 What, it’s true… :)

      posted in General Discussion
      BKeyportB
      BKeyport
    • RE: Dumbest question of the week Calendar Module

      @n6ng alternatively, if you can open two ssh sessions, you can use one of them with just pm2 logs - and watch it live as you restart MagicMirror in the other one.

      posted in Utilities
      BKeyportB
      BKeyport
    • RE: Automatic checking of all MagicMirror² modules

      @KristjanESPERANTO Kinda awkward, honestly.

      posted in Development
      BKeyportB
      BKeyport
    • RE: MMM-CalendarExt2 - show calendar name in event

      @buggynets

      look into the transform function.

      https://github.com/MMM-CalendarExt2/MMM-CalendarExt2/blob/master/docs/Filtering-and-Sorting.md

      You’ll have to figure out if there’s an event tag you can grab off of, but, here’s the basic concept (I have my system setting CSS classes based on keywords)

      transform: function(event) {
      	if (event.title.search("Recycle") > -1) {
      			event.icon = "mdi:recycle";
               		event.className = "lemay";
      		}
      	if (event.title.search("Yard Waste") > -1) {
      			event.icon = "entypo-leaf";
      			event.className = "lemay";
      		}
      	if (event.title.search("Trash") > -1) {
      			event.icon = "bi:trash";
      			event.className = "lemay";
      		}
      	if (event.title.search("Seahawks") > -1) {
      			event.icon = "fa-solid:football-ball";
      			event.className = "seahawks";
      		}
      	if (event.title.search("Sounders") > -1) {
      			event.icon = "noto:soccer-ball";
      			event.className = "sounders";
      		}
      	return event;
      },
      
      posted in Troubleshooting
      BKeyportB
      BKeyport
    • RE: Something new weather related.

      @cowboysdude pretty module. I’ll still use @j-e-f-f 's module, tho. 🤣🤣🤣

      posted in General Discussion
      BKeyportB
      BKeyport
    • RE: MMM-CalendarExt2

      @ccr41981 it’s likely because how CX2 generates it’s positions. In short, it’s working AROUND the built in position system and kinda builds it own.

      posted in Utilities
      BKeyportB
      BKeyport
    • RE: Automatic checking of all MagicMirror² modules

      @KristjanESPERANTO

      There is no package.json. We need this file to gather information about the module for this website

      is what I meant.

      posted in Development
      BKeyportB
      BKeyport
    • 1 / 1