A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • What difference does node server-only make in operation?

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    S
    Many thanks got similar great info from discord as never have patience, apols. One last thing as I said because I have done a little script for Pi Zero https://github.com/StuartIanNaylor/MagicMirrorPi0StretchLite that has chromium with all the commandline settings need for the above. I said to Mich I was just looking @ Selenium as thinking of doing a Chromium watchdog and he suggest mm_watchdog. Then I barbled on but with hindsight does mm_watchdog also work with standalone chromium? As if so all I have to do is work out why plymouth confuses me so much as to if it will work or not and maybe show on whatever chance that might maybe :) Thanks for a great explanation though. One more question is how do you mark as solved?
  • One-line switch to enable / disable modules

    14
    0 Votes
    14 Posts
    8k Views
    michael5rM
    @sean said in One-line switch to enable / disable modules: @rudibarani @michael5r Here is my version. No need to list all modules. const pre_disabled = { "UNLISTED": true, // default value for unlisted other modules. "alert":false, "clock": false, "MMM-Remote-Control":false, } var DISABLED = new Proxy(pre_disabled, { get (receiver, name) { return name in receiver ? receiver[name] : receiver["UNLISTED"] } }) Lovely :thumbs_up_light_skin_tone:
  • 0 Votes
    2 Posts
    1k Views
    R
    You say: just finished a Magic Mirror2 module that lets you display content…!! just let me know about it?? And where is it? Git hub?
  • Anyone install the TwitControl Module?

    Unsolved
    2
    0 Votes
    2 Posts
    935 Views
    bheplerB
    @seedhe If I remember correctly, the Twitter API changed and the module did not keep up.
  • Update Font Awesome to version 5?

    Unsolved
    9
    0 Votes
    9 Posts
    4k Views
    C
    i think @yawns deserves the credit…LOL
  • smart mirror

    2
    0 Votes
    2 Posts
    960 Views
    bheplerB
    @aj6823 - The Magic Mirror framework is a bit too complicated to display in a simple stand alone HTML file. You might be able to duplicate the look of the Magic Mirror with some relatively simple HTML coding. But you’ll lose most of the dynamic features. Can you expand a bit on what it is you’re trying to accomplish?
  • Habit Tracker on Magic Mirror

    Unsolved
    1
    0 Votes
    1 Posts
    791 Views
    I
    Loving this site and starting my build. I have a couple of different applications to use this mirror, how it started was the need for a home mirror. Another will be a simple alarm clock next to my bed with no mirror in the Pi-Top Ceed case with 14" screen. Another will be a desktop Pi-Top Ceed with no mirror again displaying things that I would use for work. Train schedules, weather, calendar (both weekly and monthly) and To Do’s. I also keep a monthly habit tracker on paper now and was wondering if anyone has made a sort of habit tracker. There is an app I have seen around called “Way of Life” which would look cool on the mirror etc. Thanks everyone for the help - wish I could code this, but right now I am just a copy and paste guy for my project.
  • MMM-voice ugly hdmi banner

    42
    0 Votes
    42 Posts
    19k Views
    S
    @dazza120 that is what u posted in the prior message /usr/local/etc/motion/
  • Weather Forecast Snow Amounts

    Unsolved
    1
    0 Votes
    1 Posts
    835 Views
    A
    Would it be possible to add snow amounts to The Default Weather Forecast app, just as it does for rain amount?
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    10 Views
  • Access control

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    rudibaraniR
    @retroflex Thanks for the idea. I think this is a possible option for many - but I already have the company VPN on my devices and unfortunately cannot add another VPN. Do you think it would be difficulty to implement the token-idea I described above? This would bring much more security to a lot of users without difficult changes…
  • Server <> Client communication

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    rudibaraniR
    @sdetweil Thanks for pointing me at MMM-RemoteControl. I will try this as a first unidirectional approach. In the long run, it would be great if we had two-way module / MM core capability that could communicate with node clientonly instances. I think the need for this will increase, as more and more MM-instances might be hosted within a Docker image.
  • 0 Votes
    5 Posts
    2k Views
    N
    how, can I turn on the relay after some time interval?
  • Serverless

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    W
    Okay thanks for the answers. I will probably run the serveronly-version on my vServer then.
  • secrets.js

    Unsolved
    10
    0 Votes
    10 Posts
    4k Views
    Y
    Hi! I understand this issue. I use a gitlab private repository. I clone it in “magicmirror_config” in /home/pi/ And then I created a symlink im /home/pi/MagicMirror/config/ for my versioned config.js And all my personalized files are in symlink where I need it. That’s really easy and like that I can test on local device (my Mac) before put it on the raspberry Pi. :-)
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    2 Views
  • Hourly forecast for weather forecast module

    4
    0 Votes
    4 Posts
    3k Views
    R
    Search for MMM-forecast.io here in the forum.
  • NASCAR Fork?

    3
    0 Votes
    3 Posts
    1k Views
    WayneRigleyW
    @cowboysdude thank you ! ill have to learn and play as i have not done any of that yet.
  • How to do bigger or smaller the modules

    3
    0 Votes
    3 Posts
    5k Views
    justjim1220J
    you can use zoom in your custom .css file… to zoom out, and make the modules smaller, use a number below 100%. IE: 75% My mirror (unfinished) at 100%… [image: 1527022596783-screenshot-1.png] with the following code in custom.css… /***************************************************** * Magic Mirror * * Custom CSS * * * * By Michael Teeuw http://michaelteeuw.nl * * MIT Licensed. * * * * Add any custom CSS below. * * Changes to this files will be ignored by GIT. * *****************************************************/ body { zoom: 75%; } it looks like this… [image: 1527022692278-screenshot-6.png] to zoom in (make them bigger, use a percentage over 100%, IE: 125%… my Mirror at 125%… [image: 1527022826822-screenshot-7.png] using the following code in the custom.css… /***************************************************** * Magic Mirror * * Custom CSS * * * * By Michael Teeuw http://michaelteeuw.nl * * MIT Licensed. * * * * Add any custom CSS below. * * Changes to this files will be ignored by GIT. * *****************************************************/ body { zoom: 125%; }
  • Show my own location

    4
    0 Votes
    4 Posts
    2k Views
    asimhsiddA
    Thanks. This is my first Node.js project. Anyways, I have put an example code (js) in the module folder for anyone willing to develop an android/ios app around it. I have never made an android app so I don’t know how to make the publishing app.