A Minimalist Plymouth Theme
- Download files from this link.
- Extract file:
unzip qlogo-master.zip
- Install Theme
- Create target dir:
mkdir /usr/share/plymouth/themes/qlogo
- Copy files:
cp qlogo-master/* /usr/share/plymouth/themes/qlogo/
- Create target dir:
- Enable Theme
- Debian based:
sudo plymouth-set-default-theme qlogo -R
- Debian based:
- Change the
logo.png
to any logo you want. - 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];