MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. KristjanESPERANTO
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    KristjanESPERANTOK Offline
    • Profile
    • Following 6
    • Followers 4
    • Topics 19
    • Posts 424
    • Groups 2

    Posts

    Recent Best Controversial
    • 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 🙂

      posted in Show your Mirror
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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).

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Outlook 365 calendar not loading after updating MMM-CalendarExt2

      @OliWer Thanks for reporting. Please check https://github.com/MMM-CalendarExt2/MMM-CalendarExt2/issues/401.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-TitanSchoolMenu

      @Lmagenis I can’t find MMM-TitanSchoolMenu on the module list.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MMM-Chores - Manage and keep track of your household Chores

      @PierreGode The wiki page is empty :-(

      posted in Utilities
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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

      posted in Entertainment
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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"
            }
          },
        ]
      
      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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.json in MMM-Remote-Control’s directory to find out.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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.

      posted in Utilities
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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.

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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 node and 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.sh and nvm use <version> before calling node.
      posted in Bug Hunt
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Starting MM Crontab

      @mumblebaj said in Starting MM Crontab:

      DISPLAY=0 node --run start:X11

      It should be start:x11 and not start:X11.

      Are you still using X11?

      Does it run when you start it manually?

      Can you provide the logs from the startup?

      posted in Bug Hunt
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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 0 and default?
      • Does the behavior also occur if you enter values above 0 at 0 and default?
      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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).

      posted in Utilities
      KristjanESPERANTOK
      KristjanESPERANTO
    • 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 🙂

      posted in Utilities
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: Issues with MMM-Button

      @schlomm There is a PR that seems to fix the issue: https://github.com/MarcLandis/MMM-Buttons/pull/11

      posted in Troubleshooting
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MagicMirror Container

      @mumblebaj said in MagicMirror Container:

      Well, I wanted to see how it works

      That’s a pretty good reason 👍

      posted in General Discussion
      KristjanESPERANTOK
      KristjanESPERANTO
    • RE: MagicMirror Container

      Just out of curiosity: What made you decide to build a container yourself? 🙂

      posted in General Discussion
      KristjanESPERANTOK
      KristjanESPERANTO
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 21
    • 22
    • 7 / 22