raphaelquintao / qlogo

A Minimalist Plymouth Theme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QLogo

A Minimalist Plymouth Theme

Installation

  1. Download files from this link.
  2. Extract file: unzip qlogo-master.zip
  3. Install Theme
    • Create target dir: mkdir /usr/share/plymouth/themes/qlogo
    • Copy files: cp qlogo-master/* /usr/share/plymouth/themes/qlogo/
  4. Enable Theme
    • Debian based: sudo plymouth-set-default-theme qlogo -R

Personalization

  1. Change the logo.png to any logo you want.
  2. Change the constans in qlogo.script
    LOGO_HEIGHT = 150;  // Change the logo height.
    DOTS = 5;           // Change the amount of dot to show.
    SHOW_PROGRESS = 0;  // Show progress bar.
    FADE_OUT_DOTS = 1;  // Fade out the dots in animation.
    SHOW_MODE_TEXT = 1; // Enable or disable all boot status mode text.
    SHOW_MESSAGES = 1;  // Show the boot messsages as you can see on the second video.
    
    /* Here you can personalize the message and the color as you want. Maybe you wanna translate to your language.
     *
     * Position 0: Messsage
     * Position 1: Color in RGB
     * Position 2: 1 - Enable, 2 - Disabled
     */
    MODES["boot"] = ["Booting", [255, 255, 255], 1];
    MODES["shutdown"] = ["Shutting Down", [255, 255, 255], 1];
    MODES["reboot"] = ["Rebooting", [255, 255, 255], 1];
    MODES["updates"] = ["Updating...\nDon't turn off your computer", [255, 255, 255], 1];
    MODES["system-upgrade"] = ["System Upgrading...\nDon't turn off your computer", [255, 255, 255], 1];
    MODES["firmware-upgrade"] = ["Firmware Upgrading...\nDon't turn off your computer", [255, 255, 255], 1];
    MODES["system-reset"] = ["System Resetting", [255, 255, 255], 1];

Preview

Preview.mp4
Preview.Messages.mp4

About

A Minimalist Plymouth Theme

License:Apache License 2.0


Languages

Language:C 100.0%