
Star Labs Plymouth Theme
Homepage
Source (link to git-repo or to original if based on someone elses unmodified work):
Description:
Star Labsesque plymouth theme
On Ubuntu, Linux Mint, elementaryOS
Install:
sudo add-apt-repository ppa:starlabs/ppa
sudo apt update
sudo apt install starlabs-plymouth
Uninstall:
sudo apt remove starlabs-plymouth
On Other distributions
Install:
sudo cp -r starlabs-logo/ /usr/share/plymouth/themes/
Uninstall:
sudo rm -r /usr/share/plymouth/themes/starlabs-logo/
Enable:
sudo update-alternatives
--install /usr/share/plymouth/themes/default.plymouth default.plymouth
/usr/share/plymouth/themes/starlabs-logo/starlabs-logo.plymouth 150
--slave /usr/share/plymouth/themes/default.grub default.plymouth.grub
/usr/share/plymouth/themes/starlabs-logo/starlabs-logo.grub
sudo update-initramfs -u
Disable:
sudo update-alternatives
--remove default.plymouth /usr/share/plymouth/themes/starlabs-logo/starlabs-logo.plymouth
sudo update-initramfs -u
On Ubuntu, Linux Mint, elementaryOS
Install:
sudo add-apt-repository ppa:starlabs/ppa
sudo apt update
sudo apt install starlabs-plymouth
Uninstall:
sudo apt remove starlabs-plymouth
On Other distributions
Install:
sudo cp -r starlabs-logo/ /usr/share/plymouth/themes/
Uninstall:
sudo rm -r /usr/share/plymouth/themes/starlabs-logo/
Enable:
sudo update-alternatives
--install /usr/share/plymouth/themes/default.plymouth default.plymouth
/usr/share/plymouth/themes/starlabs-logo/starlabs-logo.plymouth 150
--slave /usr/share/plymouth/themes/default.grub default.plymouth.grub
/usr/share/plymouth/themes/starlabs-logo/starlabs-logo.grub
sudo update-initramfs -u
Disable:
sudo update-alternatives
--remove default.plymouth /usr/share/plymouth/themes/starlabs-logo/starlabs-logo.plymouth
sudo update-initramfs -u
Ratings & Comments
5 Comments
in saying that great boot animation!
on ubuntu mate 18.04 neither of the above work, the second install method is incomplete and it just diverts to the next alternate splash. the following works $ sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/starlabs-logo/starlabs-logo.plymouth 150 && sudo update-alternatives --set default.plymouth /usr/share/plymouth/themes/starlabs-logo/starlabs-logo.plymouth && sudo update-initramfs -u && sudo cp /etc/default/grub /etc/default/grub.backup && sudo sed -i -e 's/GRUB_TIMEOUT=10/GRUB_TIMEOUT=2/g' /etc/default/grub && sudo sed -i -e 's/GRUB_CMDLINE_LINUX=""/GRUB_CMDLINE_LINUX="quiet splash"/g' /etc/default/grub && sudo update-grub
Hey ruby-terminator, You must have another plymouth theme install that uses a higher priority than 150. We'll do some testing and come up with a good solution for this. Glad you like it :)
Edubutntu takes priority, and Breeze takes priority, but as you can see in my script I used 150 and It worked for me, the 150 priority wasnt the issue on Ubuntu Mate x64 18.04 server edition... for some reason your script failed me and I had to rework my own.
Just realised the "server edition" which explains the why. Your comment will be good here for the future, I don't want to add any generic instructions for editing grub config on a server - that's a dangerous game. Thank you :)