diff --git a/.gitignore b/.gitignore index 9d78b0d..d9f9c6e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ output/ *.iso +branding/ diff --git a/build_files/build.sh b/build_files/build.sh index 09bd508..9b8fb97 100644 --- a/build_files/build.sh +++ b/build_files/build.sh @@ -35,13 +35,24 @@ if [ -f "$WALL" ]; then fi ### --------------------------------------------------------------- -### 4. First-boot Flatpak apps (list: /usr/share/kamos/flatpaks.list) +### 4. Boot splash: KAMOS penguin as Plymouth watermark +### --------------------------------------------------------------- +MARK=/usr/share/kamos/plymouth-watermark.png +if [ -f "$MARK" ]; then + for theme in spinner bgrt; do + tdir=/usr/share/plymouth/themes/$theme + [ -d "$tdir" ] && cp -f "$MARK" "$tdir/watermark.png" + done +fi + +### --------------------------------------------------------------- +### 5. First-boot Flatpak apps (list: /usr/share/kamos/flatpaks.list) ### --------------------------------------------------------------- chmod +x /usr/libexec/kamos-install-flatpaks systemctl enable kamos-flatpaks.service ### --------------------------------------------------------------- -### 5. System defaults +### 6. System defaults ### --------------------------------------------------------------- # Enable weekly automatic OS updates (staged, applied on reboot) systemctl enable rpm-ostreed-automatic.timer || true diff --git a/system_files/usr/share/backgrounds/kamos/kamos-default.png b/system_files/usr/share/backgrounds/kamos/kamos-default.png index 7b4db0d..485910a 100644 Binary files a/system_files/usr/share/backgrounds/kamos/kamos-default.png and b/system_files/usr/share/backgrounds/kamos/kamos-default.png differ diff --git a/system_files/usr/share/kamos/plymouth-watermark.png b/system_files/usr/share/kamos/plymouth-watermark.png new file mode 100644 index 0000000..44e780c Binary files /dev/null and b/system_files/usr/share/kamos/plymouth-watermark.png differ diff --git a/system_files/usr/share/pixmaps/kamos-logo.png b/system_files/usr/share/pixmaps/kamos-logo.png index 08341bf..0448fa9 100644 Binary files a/system_files/usr/share/pixmaps/kamos-logo.png and b/system_files/usr/share/pixmaps/kamos-logo.png differ