From dc13ecfbfd5b6f85747b0b86c235da7884209bcf Mon Sep 17 00:00:00 2001 From: KF-Art Date: Wed, 17 Aug 2022 22:32:43 -0400 Subject: [PATCH] Update calamares-modules-cereus from 20221603_2 to 2022.08.17_1 --- .../calamares-modules-cereus/files/modules/postcfg/main.py | 5 +++++ srcpkgs/calamares-modules-cereus/template | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/srcpkgs/calamares-modules-cereus/files/modules/postcfg/main.py b/srcpkgs/calamares-modules-cereus/files/modules/postcfg/main.py index 19cbf9b..09af49d 100644 --- a/srcpkgs/calamares-modules-cereus/files/modules/postcfg/main.py +++ b/srcpkgs/calamares-modules-cereus/files/modules/postcfg/main.py @@ -78,6 +78,8 @@ class ConfigController: # Remove calamares self.remove_pkg("calamares-cereus") target_env_call(["find", "*", "-name", "calamares.desktop", "-delete"]) + target_env_call(["unlink", "root/Desktop/calamares.desktop"]) + target_env_call(["unlink", "home/*/Desktop/calamares.desktop"]) # Copy skel to root self.copy_folder('etc/skel', 'root') @@ -90,6 +92,9 @@ class ConfigController: if exists(join(self.root, "usr/bin/grub-set-bootflag")): target_env_call(["grub-editenv", "-", "set", "menu_auto_hide=1", "boot_success=1"]) + # Enable plymouth + target_env_call(["plymouth-set-default-theme", "-R", "cereus_simply"]) + def run(): """ Misc postinstall configurations """ diff --git a/srcpkgs/calamares-modules-cereus/template b/srcpkgs/calamares-modules-cereus/template index cf63093..a20d4ff 100644 --- a/srcpkgs/calamares-modules-cereus/template +++ b/srcpkgs/calamares-modules-cereus/template @@ -1,6 +1,6 @@ # Template file for 'calamares-modules-cereus' pkgname=calamares-modules-cereus -version=20221603 +version=2022.08.17 revision=1 modules_dir="usr/lib/calamares/modules/" repository="cereus-core"