MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    How to hide Splash screen on boot or edit Splash screen on boot?

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    12 Posts 7 Posters 12.1k Views 6 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • lolobyteL Offline
      lolobyte
      last edited by yawns

      Hi, if you have installed the jessie plex version, you have to start

      sudo raspi-config

      At point 3 Boot Options it is possiblr to general disable or enable the splash screen on boot.

      If you have an normal jessie without plex the use a custom splash screen

      sudo apt-get install fbi

      Copy your custom splash image to /etc/ and name it splash.png.

      Next, create an init.d script called “asplashscreen” in “/etc/init.d/”.

      Create now this script with
      sudo nano /etc/init.d/asplashscreen

      #! /bin/sh
      ### BEGIN INIT INFO
      # Provides:          asplashscreen
      # Required-Start:
      # Required-Stop:
      # Should-Start:      
      # Default-Start:     S
      # Default-Stop:
      # Short-Description: Show custom splashscreen
      # Description:       Show custom splashscreen
      ### END INIT INFO
      
      
      do_start () {
      
          /usr/bin/fbi -T 1 -noverbose -a /etc/splash.png    
          exit 0
      }
      
      case "$1" in
        start|"")
          do_start
          ;;
        restart|reload|force-reload)
          echo "Error: argument '$1' not supported" >&2
          exit 3
          ;;
        stop)
          # No-op
          ;;
        status)
          exit 0
          ;;
        *)
          echo "Usage: asplashscreen [start|stop]" >&2
          exit 3
          ;;
      esac
      
      :
      

      Then make that script executable and install it for init:

      sudo chmod a+x /etc/init.d/asplashscreen
      sudo insserv /etc/init.d/asplashscreen
      

      Reboot and watch your custom splash screen:

      sudo reboot

      If you want to hide most of the Boot text then follow this step:

      sudo nano /boot/cmdline.txt

      may look something like this:

      tty3: starts with console 3 to hide the boot messages!
      
      dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty3 loglevel=3 logo.nologo root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
      

      good luck

      Mod-Edit: Please use markdown, otherwise this becomes totally unreadable.

      N 1 Reply Last reply Reply Quote 1
      • N Offline
        nobita @lolobyte
        last edited by

        @lolobyte Thanks your help,I will try later

        1 Reply Last reply Reply Quote 0
        • lolobyteL Offline
          lolobyte
          last edited by

          Sorry, don’ know who has written this…

          Mod-Edit: Please use markdown, otherwise this becomes totally unreadable.

          Probably a Moderator.

          What please is “markdown” and how to use it?

          brobergB 1 Reply Last reply Reply Quote 0
          • brobergB Offline
            broberg Project Sponsor @lolobyte
            last edited by

            @lolobyte
            Here is a documentation of markdown :
            http://commonmark.org/help/

            1 Reply Last reply Reply Quote 1
            • schlachtkreuzer6S Offline
              schlachtkreuzer6
              last edited by

              The the easiest way to change the splash screen is changing the picture ;) https://pi280.wordpress.com/2016/10/17/about-that-pixel-splash-screen/

              N 1 Reply Last reply Reply Quote 0
              • N Offline
                nobita @schlachtkreuzer6
                last edited by

                @schlachtkreuzer6 I mean Splash screen on boot like this0_1486022813410_S__4210701.jpg

                yawnsY schlachtkreuzer6S 2 Replies Last reply Reply Quote 2
                • yawnsY Offline
                  yawns Moderator @nobita
                  last edited by

                  @nobita
                  I did not check, so this is all theory.
                  The splashscreen is using plymouth, so you should be able to change it the “common way”:

                  http://www.bodhilinux.com/w/changing-plymouth-bootsplash/

                  1 Reply Last reply Reply Quote 0
                  • schlachtkreuzer6S Offline
                    schlachtkreuzer6 @nobita
                    last edited by

                    @nobita yeah just change that image to another image (in the standard plymoth directory) and you are fine. i did that like this, before MM v2.1 with the splash screen was released, because that wohle plymouth stuff did not work for me. and there just few comandlines and worked perfectly!

                    B 1 Reply Last reply Reply Quote 0
                    • B Offline
                      bachoo786 @schlachtkreuzer6
                      last edited by

                      @schlachtkreuzer6 how do you change the image? In which folder is the image?

                      S 1 Reply Last reply Reply Quote 0
                      • S Offline
                        sdetweil @bachoo786
                        last edited by sdetweil

                        @bachoo786 >In which folder is the image?

                        /usr/share/plymouth/themes

                        this shows the list of available

                         plymouth-set-default-theme --list
                        

                        this resets to default
                        plymouth-set-default-theme --reset

                        see the installer code (and the install.log, as install changed the splash screen image)

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 1 / 2
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy