Plymouth on Arch
- 1 minI’m now enjoying beautiful splashes at boot on my Arch box. Yes, plymouth works quite well on Arch. To get it working well, execute the folowing steps:
-  
First get KMS enabled in your kernel.
 -  
Next install plymouth-git from aur:
yaourt -S plymouth-git -  
Then edit
/etc/mkinitcpio.confand add ‘plymouth’ (without the quotes) in the HOOKS line after base, udev and autodetect. -  
Rebuild initrd using(as root):
mkinitcpio -p kernel26 -  
To change themes, do:
sudo plymouth-set-default-theme --rebuild-initrdYou can find themes in
/usr/share/plymouth/themes. -  
Reboot
 
The only problem I have with this method is that plymouthd does not get stopped even after plymouth splash ends. For that I have to do (as root)
	killall plymouthd
everytime I login(not a very viable solution). So, if you guys have any better solution, feel free to tell me.
Cheers!