This theme is made for tos plymouth
Perform the following actions so that plymouth can be displayed on the screen during boot
- Install plymouth
yay -S plymouth
- Update
/etc/mkinitcpio.conf
HOOKS="... plymouth" # add plymouth to the end
- Update mkinitcpio
sudo mkinitcpio -p linux-tos
- Update grub config
/etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="... quiet splash vt.global_cursor_default=0"
- Update grub
sudo grub-mkconfig -o /boot/grub/grub.cfg
- Setup plymouth for your Display Manager
sudo systemctl disable lightdm
sudo systemctl enable lightdm-plymouth
First we put this theme in the correct location
sudo mkdir -p /usr/share/plymouth/themes/tos
sudo cp * /usr/share/plymouth/themes/tos/
Now we can change the default theme to the one provided by TOS.
Do this by editing this file: /etc/plymouth/plymouthd.conf
[Daemon]
Theme=tos
ShowDelay=1
After changing the theme rebuild your initial ramdisk to hold the latest changes:
sudo mkinitcpio -p linux-tos