Remove plymouth then?
Well… you can test with some boot parameters:
plymouth.enable=0 disablehooks=plymouth
You can add this to options during boot from grub if you hit ‘e’ at selection.
You can also apply it persistently by editing /etc/default/grub
and adding to the GRUB_CMDLINE_LINUX
line. ex:
GRUB_CMDLINE_LINUX="plymouth.enable=0 disablehooks=plymouth"
Then run:
sudo update-grub
And reboot.
To remove it completely:
Uninstall:
sudo pacman -Rns plymouth plymouth-theme-manjaro
(im not sure which all packages you have - edit as necessary)
Also check if its set in mkinitcpio
grep plymouth /etc/mkinitcpio.conf
If it does conatain plymouth in the hooks or modules lines you can remove it.
If edited make sure to run:
sudo mkinitcpio -P
You can also remove those plymouth options from /etc/default/grub
if you previouly used those.
And lastly run a grub update:
sudo update-grub
And reboot of course.