You know, I just realized that the “blank screen” I mentioned earlier was actually just my screen setup. In fact, this is the same errors I was having with the NPM/Node being out of date…
Read the statement by Michael Teeuw here.
Posts
-
RE: MM startup problem after update
-
RE: MM startup problem after update
@manu85340 did you get a all black screen? There’s some background stuff that needs node/npm upgraded. If you updated before around 6 hours prior to your post, run the command again.
-
RE: Trying to hide EXT-Spotify from showing
@slooquie take away the
positionitem in the config. It should default to none, but run in the background. -
RE: MMM-2Day-NOAA-Forecast stopped working, stuck on "loading"
That would be my guess too - DNS issues at the bare minimum (It’s always DNS)
-
RE: node generate_token_v2 error
@bugsounet so, silly question as I don’t use google for anything but an old email address - Would a token generated in your app work in the other app?
-
RE: node generate_token_v2 error
@sdetweil Google did change their login experience anyway, so if the module’s not being maintained, it’s a hard stop, likely.
-
RE: MMM-Multimonth
I am upgrading the module. Uploading a new release as soon as I’m done posting this.
This change is breaking old CSS.
Re-read the README.md before upgrading.
Updating from prior to 08 Jun 2024:
CSS is changed - please check all customizations. Old Elements, values, etc. have been deleted.The following CSS code is all you need in custom.css if all you’re changing is the colors and/or background edge rounding:
(Key changes here: “current” has been changed to “today”, “background-week, color-week have been removed as redundant”)
Most of the changes are to implement feature changes.
Thanks for the support folks.
-
RE: How to have different colors for different calendar events
@spinster I think I have a solution. You can freely test. I have the solution uploaded to the dev branch of the module on github.
https://github.com/BKeyport/MMM-Multimonth/tree/dev
Read the readme for instructions.
-
RE: MMM-Remote-Control Alternative
@Dennys1 Sam’s got the best idea for you. There’s other ways to do it, but that by far is the easiest.
-
RE: MMM-Remote-Control Alternative
@Dennys1 What are you trying to do? I’m running most of my automation stuff outside of the MM ecosystem for sanity reasons. MMM-RemoteControl never did anything right for me.
-
RE: What is this ribbon?
@davidgagne In this case, yes, because the CSI port on the Zero isn’t the standard port… at least the old standard. Now it’s a pair of MIPI connectors for that, so everything’s gotta change again 🤣
-
RE: MMM-Multimonth
You’re missing one or two variables. I redid them. add
--background-week: rgba(255, 255, 255, 0);and it’ll snap into shape, assuming you’ve pulled the latest off github.
Double check your list against my new one. Make sure all of them are there.
-
RE: How to have different colors for different calendar events
@Spinster Not currently possible, although, I could possibly implement it soon enough. Let me have some time, and I’ll see what I can do.
-
RE: MMM-Multimonth
@p1lspeda I have it fixed. Remove the old from custom.css and replace it with the following and then set whichever backgrounds you’d like as before. (
rgba(255, 255, 255, 0);)Thanks for catching.
.MMM-Multimonth .settings { --background-dimmed: var(--color-background); --background-weekday: var(--color-background); --background-weekend: cornflowerblue; --background-current: Yellow; --background-header: Green; --background-weekno: grey; --background-dow: var(--color-background); --background-week: var(--color-background); --color-weekday: var(--color-text); --color-weekend: var(--color-background); --color-current: var(--color-background); --color-dimmed: var(--color-text-dimmed); --color-header: var(--color-text-bright); --color-weekno: var(--color-text-bright); --color-day: var(--color-text); --color-dow: var(--color-text); --color-event: Red; --back-rounding: 8px; --alignment: center; --fontsize: var(--font-size-xsmall); }the custom “.current” part is also not needed.
-
RE: MMM-Multimonth
@sdetweil It’s easy fixes. I just reverted to a point where I had the proto-settings but not the actual use of them. 🤪🤪🤪
-
RE: MMM-Multimonth
@sdetweil I’m assuming he wants to show a background image behind it.
I have error(s) in my CSS.
The settings don’t work. I think I reverted a bit too far on my end.
@p1lspeda - Give me 24-48 hours, I’ll fix this up by Sunday night, Los Angeles time. Expect an update, of which, will include removal of the
.MMM-Multimonth .currenttag in custom.css - it won’t be needed. -
RE: MMM-Multimonth
@p1lspeda looks like I’ve got some work to do on the CSS - in looking up the solution, I found bugs.
In your custom.css (~/MagicMirror/css typically) paste the code below:
.MMM-Multimonth .settings { --background-dimmed: var(--color-background); --background-weekday: var(--color-background); --background-weekend: cornflowerblue; --background-current: Yellow; --background-header: Green; --background-weekno: grey; --background-dow: var(--color-background); --color-weekday: var(--color-text); --color-weekend: var(--color-background); --color-current: var(--color-background); --color-dimmed: var(--color-text-dimmed); --color-header: var(--color-text-bright); --color-weekno: var(--color-text-bright); --color-dow: var(--color-text); --color-event: Red; --back-rounding: 8px; --alignment: center; --fontsize: var(--font-size-xsmall); }any line that includes “–background” can be set to
rgba(255, 255, 255, 0)for transparent.example:
---background-weekday: rgba(255,255,255,0);See: https://www.w3schools.com/html/html_colors_rgb.asp for details.
(Note: the rest of the variables can also be set as you like, “back-rounding” for example, adjusts the rounded edges globally [except for current until below is added])
For the current day to round the edges properly paste:
.MMM-Multimonth .current { border-style: hidden; border-radius: var(--back-rounding); border-color: var(--background-current); background-color: var(--background-current); color: var(--color-current); } -
RE: Major problems loading new module page...
@KristjanESPERANTO Of course, now that I’ve reported it, it’s stopped doing it entirely. I’ll chalk it to an issue on my end. Things are a little crazy over here right now.
-
RE: Major problems loading new module page...
@sdetweil from the list icon in the header.
It loads, then gets stuck on something after load - like it’s prebuffering something but failing.
-
RE: Major problems loading new module page...
@sdetweil I’m on latest release on both…