mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-26 23:19:29 +02:00
14 lines
466 B
TOML
14 lines
466 B
TOML
packages = ["plymouth-kcm", "plymouth-theme-manjaro"]
|
|
script = """
|
|
set -eux
|
|
|
|
echo "Editing default grub config..."
|
|
[[ -f "/etc/default/grub" ]] && sed -i s/'GRUB_CMDLINE_LINUX_DEFAULT="'/'GRUB_CMDLINE_LINUX_DEFAULT="splash '/g /etc/default/grub
|
|
grep GRUB_CMDLINE_LINUX_DEFAULT /etc/default/grub
|
|
|
|
echo "Set plymouth theme"
|
|
sed -i -e "s,.*Theme=.*,Theme=manjaro," /etc/plymouth/plymouthd.conf
|
|
cat /etc/plymouth/plymouthd.conf
|
|
plymouth-set-default-theme -R manjaro
|
|
"""
|