Nice :-) Don’t forget to add it to the modules list: https://github.com/MagicMirrorOrg/MagicMirror/wiki/3rd-party-modules
Read the statement by Michael Teeuw here.
Posts
-
RE: [MMM-MarineTraffic] Show nearby boats and freighters
-
RE: Can't get MMM-Carousel to work with MMM-BackgroundSlideshow
@jimbocz Seems that the
positionsetting isn’t optional anymore. This works for me:modules: [ { module: "alert" }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "MMM-BackgroundSlideshow", disabled: false, position: "fullscreen_below", config: { imagePaths: ["modules/MMM-BackgroundSlideshow/exampleImages/"], transitionImages: false, randomizeImageOrder: true, slideshowSpeed: 30000, resizeImages: true, maxWidth: 1024, maxHeight: 600, backgroundSize: "contain" } }, { module: "weather", position: "bottom_right", config: { weatherProvider: "openmeteo", type: "current", lat: "51.5085", lon: "-0.1257" } }, { module: "MMM-Carousel", position: "bottom_right", config: { transitionInterval: 10000, ignoreModules: [ "MMM-BackgroundSlideshow", "alert", "updatenotification" ], mode: "global" } }, ] -
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz Unfortunately, I don’t know if I can help any further here. The error message (
[ERROR] table not found in HTML.) is indeed from MMM-Scrapey - I have created a pull request for the module to improve logging, at least in the future. -
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz said in 2.32.0 Calendar module limitDays and excludedEvents stopped working:
but in case you’re onto something
Not sure, but you have a rather old version of MMM-Remote-Control which is only compatible to a limited extent with MM 2.32.0. If you update MMM-Remote-Control, the start of MM may not abort like above.
-
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz said in 2.32.0 Calendar module limitDays and excludedEvents stopped working:
Looks like an issue with MMM-Remote-Control.Which version are you using? Run
grep '"version":' package.jsonin MMM-Remote-Control’s directory to find out. -
RE: MMM-OpeningHours
@mumblebaj Cool!
But one hint because I saw this change to the license file: You cannot relicense GPL software under MIT. If you fork a project under the GNU General Public License (GPL), your modified version must also stay under GPL. The GPL’s rules are strict — you can’t change it to a more permissive license like MIT.
-
RE: MMM-Pages
@MrPinner141 I can’t take a closer look at it right now, but I have an idea for a workaround: But it only works if MM restarts regularly. Some users shut MM down at night and start it up again in the morning. Then you could set the timer for the homepage to over 24 hours, this should have the desired effect that the homepage is always visible.
-
RE: Starting MM Crontab
@mumblebaj Just an idea: Maybe the node version used in Cron could be to old. When you run a script manually in your terminal, your full user environment (including things like .bashrc or .zshrc) is loaded. Cron runs in a much more minimal environment — it often doesn’t load your shell config files, so tools like nvm (Node Version Manager) might not be available.
How to fix it:
- Use the full path to Node: Find it with
which nodeand use that path in your cron job. - Set the environment manually in cron: You can define your PATH at the top of the cron file.
- Source nvm in your script: If you use nvm, add source
~/.nvm/nvm.shandnvm use <version>before calling node.
- Use the full path to Node: Find it with
-
RE: Starting MM Crontab
@mumblebaj said in Starting MM Crontab:
DISPLAY=0 node --run start:X11
It should be
start:x11and notstart:X11.Are you still using X11?
Does it run when you start it manually?
Can you provide the logs from the startup?
-
RE: MMM-Pages
@MrPinner141 said in MMM-Pages:
timings: { default: 0, // rotate every 5 seconds 0: 0, // page 0 rotates every 20 seconds 1: 20000, },To understand your setting better:
- What do you want to achieve with 0 ms for
0anddefault? - Does the behavior also occur if you enter values above 0 at
0anddefault?
- What do you want to achieve with 0 ms for
-
RE: MMM-Chores - Manage and keep track of your household Chores
@sdetweil said in MMM-Chores - Manage and keep track of your household Chores:
or use unclutter (have apt install it) will only be visible when you move it
I think unclutter doesn’t work on modern systems (Wayland).
-
RE: MMM-Chores - Manage and keep track of your household Chores
@PierreGode said in MMM-Chores - Manage and keep track of your household Chores:
What i found hard is that the mouse is invisible on magic mirror
MMM-Cursor can solve that 🙂
-
RE: Issues with MMM-Button
@schlomm There is a PR that seems to fix the issue: https://github.com/MarcLandis/MMM-Buttons/pull/11
-
RE: MagicMirror Container
@mumblebaj said in MagicMirror Container:
Well, I wanted to see how it works
That’s a pretty good reason 👍
-
RE: MagicMirror Container
Just out of curiosity: What made you decide to build a container yourself? 🙂
-
RE: Issues with MMM-Button
@schlomm Did you try the fork on the module list?
https://github.com/MarcLandis/MMM-Buttons -
RE: need help installing MMPM - losing my mind
mmpm is a cool project.
Instead this:
python3 -m pip install --upgrade mmpmThis may work (I don’t have time to test it now ):
sudo apt install pipx pipx install mmpm@bee-mar Can you help here (and maybe update your installation instructions)?
By the way: There is also a manual (like official) way to install modules. You do not need a manager for installing modules.
-
RE: MMM-Wallpaper - wrong path
@sankum said in MMM-Wallpaper - wrong path:
[WARN] No /home/sankum/MagicMirror/modules/MMM-WallPaper/MMM-WallPaper.js found for module: MMM-WallPaper.
There is no module “MMM-WallPaper” (with a
Pinstead of ap) on the module list. Please show whatgit remote -voutputs when you are in the module’s directory. Did you spell it right in your config file? -
RE: Family Mirror
Really nice! Thanks for sharing and the description with details about the modules! 👏
-
Community task: Check automated translations
Hey everyone,
MagicMirror is currently available in 47 languages. However, a lot of these translations are incomplete. I have used translation tools to fill the gaps and compiled the results in a pull request (https://github.com/MagicMirrorOrg/MagicMirror/pull/3794).
If you know a language other than German, Esperanto and English, please take a look at the PR and give us feedback.