From 50fe9ebba2b3a43e312e96e3e33b9644e0a82ee6 Mon Sep 17 00:00:00 2001 From: sergio Date: Fri, 21 Aug 2026 16:05:27 +0000 Subject: Preliminar splash everywhere --- lib/AlgaOS/Installer/GUI.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/AlgaOS/Installer/GUI.pm b/lib/AlgaOS/Installer/GUI.pm index 25698c2..164e42e 100644 --- a/lib/AlgaOS/Installer/GUI.pm +++ b/lib/AlgaOS/Installer/GUI.pm @@ -705,7 +705,7 @@ EOF $kver =~ s{.*/kernel-}{}; say $fh <<"EOF"; menuentry "AlgaOS" --unrestricted { - linux /boot/kernel-$kver root=PARTUUID=$devices{AlgaOSRoot} + linux /boot/kernel-$kver root=PARTUUID=$devices{AlgaOSRoot} splash quiet initrd /boot/initramfs-$kver.img }; EOF @@ -716,12 +716,12 @@ EOF $kver =~ s{.*/kernel-}{}; excfailexit qw{dracut --force --kver}, $kver, - qw{--no-hostonly --stdlog 6 --force --add dmsquash-live}, + qw{--no-hostonly --stdlog 6 --force --add}, "plymouth dmsquash-live", "/boot/recovery/initramfs-${kver}.img"; say $fh <<"EOF"; menuentry "AlgaOS Recovery" --users admin { - linux /boot/recovery/kernel-$kver root=live:PARTUUID=$devices{AlgaOSRecovery} rd.live.dir=/ rd.live.squashimg=rootfs.squashfs rd.live.overlay.overlayfs=1 rd.live.debug=1 rd.systemd.show_status=1 rd.systemd.log_level=debug + linux /boot/recovery/kernel-$kver root=live:PARTUUID=$devices{AlgaOSRecovery} rd.live.dir=/ rd.live.squashimg=rootfs.squashfs rd.live.overlay.overlayfs=1 rd.live.debug=1 rd.systemd.show_status=1 rd.systemd.log_level=debug splash quiet initrd /boot/recovery/initramfs-$kver.img }; EOF -- cgit v1.3 From 02d4850ce64e4d5c5f94ec344b682b4b4e582cc2 Mon Sep 17 00:00:00 2001 From: sergio Date: Fri, 21 Aug 2026 16:16:48 +0000 Subject: Adding default theme selection --- lib/AlgaOS/Installer/GUI.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/AlgaOS/Installer/GUI.pm b/lib/AlgaOS/Installer/GUI.pm index 164e42e..789bc20 100644 --- a/lib/AlgaOS/Installer/GUI.pm +++ b/lib/AlgaOS/Installer/GUI.pm @@ -711,6 +711,7 @@ menuentry "AlgaOS" --unrestricted { EOF } excfailexit qw{emerge --sync}; + excfailexit qw{plymouth-set-default-theme -R colorful_loop}; for my $kver ( glob("/boot/recovery/kernel-*") ) { die "No kernel found in /boot/recovery\n" unless $kver; -- cgit v1.3