@PierreGode The wiki page is empty :-(
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Chores - Manage and keep track of your household Chores
-
RE: [MMM-MarineTraffic] Show nearby boats and freighters
Nice :-) Don’t forget to add it to the modules list: https://github.com/MagicMirrorOrg/MagicMirror/wiki/3rd-party-modules
-
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?