FYI: I’ve created a fork, refactored it and optimized the README. It should be easier to install :-)
Read the statement by Michael Teeuw here.
Posts
-
RE: Help with mmm-systemtemperature error messages
-
RE: *Newly created module - MMM-Planefinder*
@Exndfan Nice. Don’t forget to add it to the modules list :-)
-
RE: Mirror, Mirror… Who’s My Persona Today? 🤖✨ (Open Voice OS + MagicMirror²)
@goldyfruit Very cool! 🚀Don’t forget to add MMM-ShareToMirror to the module list 🙂
-
RE: MagicMirror is Failing to start at all
If
--run
is a bad option let’s try run the long command directly and see what happens.So instead of
npm run
, try this:On Wayland:
WAYLAND_DISPLAY="${WAYLAND_DISPLAY:=wayland-1}" ./node_modules/.bin/electron js/electron.js --enable-features=UseOzonePlatform --ozone-platform=wayland
On X11:
DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
This may show us the real core of the problem, or it works and starts MM properly and we could make it a little more comfortable (even if it is a bit hacky).
-
RE: MMM-TitanSchoolMenu
@Lmagenis I can’t find MMM-TitanSchoolMenu on the module list.
-
RE: MMM-Chores - Manage and keep track of your household Chores
@PierreGode The wiki page is empty :-(
-
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
position
setting 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.