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

    Posts

    Recent Best Controversial
    • RE: How I got my Magic Mirror working on a Raspberry Pi 0 (zero)

      Great work Wieber. That’s a great guide. You saved me a lot of time.

      I followed it step by step and noticed a few things missing, so here they are:

      Step 6
      git is not installed by default so you’ll need to install it first:

      sudo apt-get install git

      Then before running ‘sudo npm install’ you need to do this:

      cd MagicMirror

      Step 11
      To use xset (for stopping the screen blanking) you first need to install the xset command:

      sudo apt-get install x11-xserver-utils

      start.sh should start with this line:

      #!/bin/bash

      chmod should be run with sudo:

      sudo chmod a+x /home/pi/start.sh

      Also…

      Instead of adding start.sh to the end of .bashrc, it’s better practice to have the
      script run automatically on start-up. To do this:

      sudo mv /home/pi/start.sh /etc/init.d/startMagicMirror.sh
      sudo update-rc.d startMagicMirror.sh defaults 100

      This moves the script to the standard location for start-up scripts and tells the
      system to run it after each boot.

      I think if you do this, there’s no need to log in automatically (so you can skip step 10 above).

      posted in Tutorials
      K
      Kobie
    • RE: How I got my Magic Mirror working on a Raspberry Pi 0 (zero)

      Forgot to add:

      Step 11
      Instead of
      sudo nano /home/pi/startMidori

      it should read:
      sudo nano /home/pi/startMidori.sh

      And as Burner911 mentioned, insert

      unclutter &

      to midori.sh between the second last and last line.

      posted in Tutorials
      K
      Kobie
    • 1 / 1