diff --git a/paw/base/boot/limine.conf b/paw/base/boot/limine.conf index f1ccef8..63da428 100644 --- a/paw/base/boot/limine.conf +++ b/paw/base/boot/limine.conf @@ -1,7 +1,9 @@ timeout: 16 -interface_branding_color: 7 +interface_branding_color: 5 interface_branding: -- Yiff! -- +wallpaper: boot():/boot/wallpaper.jpg +wallpaper_style: tiled editor_enabled: no interface_help_hidden: yes diff --git a/paw/base/boot/wallpaper.jpg b/paw/base/boot/wallpaper.jpg new file mode 100644 index 0000000..99a5daa Binary files /dev/null and b/paw/base/boot/wallpaper.jpg differ diff --git a/paw/boot/host/iso.sh b/paw/boot/host/iso.sh index a9f4835..58ef2ac 100755 --- a/paw/boot/host/iso.sh +++ b/paw/boot/host/iso.sh @@ -8,6 +8,7 @@ set -e ISO=$ST_PROJECT_ROOT/artifacts/sp3.iso CONFIG=$ST_PROJECT_ROOT/paw/base/boot/limine.conf +WALLPAPER=$ST_PROJECT_ROOT/paw/base/boot/wallpaper.jpg KERNEL=$ST_PROJECT_ROOT/artifacts/stoskrnl.sys mkdir -p iso_root/boot/ @@ -15,6 +16,9 @@ mkdir -p iso_root/boot/ # Copy the kernel to the ISO root cp $KERNEL iso_root/boot +# Copy the wallpaper to the ISO root +cp $WALLPAPER iso_root/boot + # Copy boot files cp $CONFIG stand/limine/limine-bios.sys \ stand/limine/limine-bios-cd.bin \