diff --git a/.github/release-nest-v3 b/.github/release-nest-v3 index bf0d87a..56a6051 100644 --- a/.github/release-nest-v3 +++ b/.github/release-nest-v3 @@ -1 +1 @@ -4 \ No newline at end of file +1 \ No newline at end of file diff --git a/main.sh b/main.sh index 6bc8690..54f258f 100755 --- a/main.sh +++ b/main.sh @@ -9,10 +9,13 @@ echo "$PIKA_BUILD_ARCH" > pika-build-arch VERSION="1.0" # Clone Upstream -cd ./pika-live-booster-hooks/ +wget https://git.pika-os.com/website/pika-branding/raw/branch/main/logos/pika-logo-text-dark-nv.png -O ./plymouth-theme-pika/usr/share/plymouth/themes/pika/watermark.png +wget https://git.pika-os.com/website/pika-branding/raw/branch/main/logos/pika-simple-small-nv.png -O ./plymouth-theme-pika/usr/share/plymouth/themes/pika/bgrt-fallback.png +cp -vf ./plymouth-theme-pika/usr/share/plymouth/themes/pika/watermark.png ./plymouth-theme-pika/usr/share/plymouth/pika-logo.png +cd ./plymouth-theme-pika/ # Get build deps -LOGNAME=root dh_make --createorig -y -l -p pika-live-booster-hooks_"$VERSION" || echo "dh-make: Ignoring Last Error" +LOGNAME=root dh_make --createorig -y -l -p plymouth-theme-pika_"$VERSION" || echo "dh-make: Ignoring Last Error" apt-get build-dep ./ -y # Build package diff --git a/pika-live-booster-hooks/usr/share/booster/hooks-early/01_pika_live.sh b/pika-live-booster-hooks/usr/share/booster/hooks-early/01_pika_live.sh deleted file mode 100755 index 44bada4..0000000 --- a/pika-live-booster-hooks/usr/share/booster/hooks-early/01_pika_live.sh +++ /dev/null @@ -1,126 +0,0 @@ -#! /bin/bash - -set -e - -# Mount the proc kernel temp mount -busybox mount -n -t proc proc /proc - -# Check if bootloader wants the hook to be executed - -BOOT_PARAM="$(busybox grep -o 'boot=[^ ]*' /proc/cmdline | busybox awk -F= '{print $2}')" - -if [[ $BOOT_PARAM != "live" ]] -then - exit 0 -fi - -# Check if quiet is used -if [[ "$(busybox cat /proc/cmdline)" =~ (^|[[:space:]])quiet($|[[:space:]]) ]]; then - QUIET_MODE=true -else - QUIET_MODE=false -fi - -ISO_LABEL_NAME_PARAM="$(busybox grep -o 'ISO_LABEL_NAME=[^ ]*' /proc/cmdline | busybox awk -F= '{print $2}')" -VTOY_ISO_NAME_PARAM="$(busybox grep -o 'VTOY_ISO_NAME=[^ ]*' /proc/cmdline | busybox awk -F= '{print $2}')" - -if [ "$QUIET_MODE" = false ] -then - busybox echo '[PikaOS Booster Live Hook]: boot=live detected in kernel cmdline, running LiveISO hooks...' -fi -### Create mounting dirs -if [ "$QUIET_MODE" = false ] -then - busybox echo '[PikaOS Booster Live Hook]: Creating mountpoints...' -fi -busybox mkdir -p /mnt/medium /mnt/filesystem /mnt/overlay /booster.root - -# Try finding Appended partition among standard partition blocks. -if [ "$QUIET_MODE" = false ] -then - busybox echo '[PikaOS Booster Live Hook]: Searching for Live medium...' -fi -LIVE_MEDIA="$(busybox blkid | busybox grep "PikaOS 4" | busybox grep "iso9660" | busybox head -n1 | busybox awk -F: '{print $1}')" - -if [ -z "$LIVE_MEDIA" ] -then - # Try getting appended partition from Ventoy ISO Partition - if [ "$QUIET_MODE" = false ] - then - busybox echo '[PikaOS Booster Live Hook]: Live medium could not be found among standard blocks.' - fi - if [ "$QUIET_MODE" = false ] - then - busybox echo '[PikaOS Booster Live Hook]: Attempting Ventoy mapping hook.' - fi - # Get Ventoy ISO Partition ID - VENTOY_DEVICE="$(busybox blkid | busybox grep "Ventoy" | busybox head -n1 | busybox awk -F: '{print $1}')" - # Keep retrying 10 times incase usb_storage has yet to pick up - while [ -z "$VENTOY_DEVICE" ] - do - if [ "$QUIET_MODE" = false ] - then - busybox echo '[PikaOS Booster Live Hook]: Ventoy Device not found retrying...' - fi - VENTOY_DEVICE="$(busybox blkid | busybox grep "Ventoy" | busybox head -n1 | busybox awk -F: '{print $1}')" - ((c++)) && ((c==10)) && break - busybox sleep 5 - done - # Get filesystem if iso was found - if [ ! -z "$VENTOY_DEVICE" ] - then - if [ "$QUIET_MODE" = false ] - then - busybox echo "[PikaOS Booster Live Hook]: Ventoy device found as $VENTOY_DEVICE !" - fi - busybox mkdir -p /mnt/ventoy - busybox mount -o ro "$VENTOY_DEVICE" /mnt/ventoy - ### Mount live medium - if [ "$QUIET_MODE" = false ] - then - busybox echo '[PikaOS Booster Live Hook]: Mounting Live medium...' - fi - busybox mount -o ro,loop /mnt/ventoy/$VTOY_ISO_NAME_PARAM /mnt/medium - else - if [ "$QUIET_MODE" = false ] - then - busybox echo '[PikaOS Booster Live Hook]: Error: Live medium could not be found!' - fi - exit 32 - fi -else - if [ "$QUIET_MODE" = false ] - then - busybox echo "[PikaOS Booster Live Hook]: Live medium found on $LIVE_MEDIA !" - fi - ### Mount live medium - if [ "$QUIET_MODE" = false ] - then - busybox echo '[PikaOS Booster Live Hook]: Mounting Live medium...' - fi - busybox mount -o ro $LIVE_MEDIA /mnt/medium -fi - -### Create loop from squashfs -if [ "$QUIET_MODE" = false ] -then - busybox echo '[PikaOS Booster Live Hook]: Mounting Live medium squashfs image...' -fi -busybox mount -o loop,ro /mnt/medium/live/filesystem.squashfs /mnt/filesystem - -### Mount tmpfs on ram -if [ "$QUIET_MODE" = false ] -then - busybox echo '[PikaOS Booster Live Hook]: Creating Ramfs...' -fi -busybox mount -t tmpfs -o mode=1777 overlay_tmpfs /mnt/overlay - -### Create overlay dirs -busybox mkdir -p /mnt/overlay/upper /mnt/overlay/work - -### Create merged overlay -if [ "$QUIET_MODE" = false ] -then - busybox echo '[PikaOS Booster Live Hook]: Creating writable overlay Rootfs on ramfs...' -fi -busybox mount -t overlay overlay -o lowerdir=/mnt/filesystem:/mnt/medium,upperdir=/mnt/overlay/upper,workdir=/mnt/overlay/work /booster.root diff --git a/pika-live-booster-hooks/debian/changelog b/plymouth-theme-pika/debian/changelog similarity index 61% rename from pika-live-booster-hooks/debian/changelog rename to plymouth-theme-pika/debian/changelog index d253999..7f29e0b 100644 --- a/pika-live-booster-hooks/debian/changelog +++ b/plymouth-theme-pika/debian/changelog @@ -1,4 +1,4 @@ -pika-live-booster-hooks (1.0-101pika3) pika; urgency=medium +plymouth-theme-pika (1.0-101pika1) pika; urgency=medium * Initial release. diff --git a/pika-live-booster-hooks/debian/control b/plymouth-theme-pika/debian/control similarity index 58% rename from pika-live-booster-hooks/debian/control rename to plymouth-theme-pika/debian/control index cee4cbd..0cdaa2f 100644 --- a/pika-live-booster-hooks/debian/control +++ b/plymouth-theme-pika/debian/control @@ -1,4 +1,4 @@ -Source: pika-live-booster-hooks +Source: plymouth-theme-pika Section: admin Priority: optional Maintainer: ferreo @@ -6,9 +6,10 @@ Standards-Version: 4.6.1 Build-Depends: debhelper-compat (= 13) Rules-Requires-Root: no -Package: pika-live-booster-hooks +Package: plymouth-theme-pika Architecture: linux-any Depends: ${misc:Depends}, - booster, -Description: Booster hooks for PikaOS LiveISO. + plymouth, + plymouth-themes, +Description: A theme designed for PikaOS that features a spinning egg. diff --git a/pika-live-booster-hooks/debian/copyright b/plymouth-theme-pika/debian/copyright similarity index 100% rename from pika-live-booster-hooks/debian/copyright rename to plymouth-theme-pika/debian/copyright diff --git a/pika-live-booster-hooks/debian/install b/plymouth-theme-pika/debian/install similarity index 100% rename from pika-live-booster-hooks/debian/install rename to plymouth-theme-pika/debian/install diff --git a/plymouth-theme-pika/debian/postinst b/plymouth-theme-pika/debian/postinst new file mode 100644 index 0000000..2a16f47 --- /dev/null +++ b/plymouth-theme-pika/debian/postinst @@ -0,0 +1,6 @@ +#! /bin/bash + +set -e + +plymouth-set-default-theme pika-bgrt +update-initramfs -c -k all \ No newline at end of file diff --git a/pika-live-booster-hooks/debian/rules b/plymouth-theme-pika/debian/rules similarity index 100% rename from pika-live-booster-hooks/debian/rules rename to plymouth-theme-pika/debian/rules diff --git a/pika-live-booster-hooks/debian/source/format b/plymouth-theme-pika/debian/source/format similarity index 100% rename from pika-live-booster-hooks/debian/source/format rename to plymouth-theme-pika/debian/source/format diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika-bgrt/pika-bgrt.plymouth b/plymouth-theme-pika/usr/share/plymouth/themes/pika-bgrt/pika-bgrt.plymouth new file mode 100644 index 0000000..3e03d89 --- /dev/null +++ b/plymouth-theme-pika/usr/share/plymouth/themes/pika-bgrt/pika-bgrt.plymouth @@ -0,0 +1,84 @@ +[Plymouth Theme] +Name[be]=PIKA-BGRT +Name[cs]=PIKA-BGRT +Name[da]=PIKA-BGRT +Name[de]=PIKA-BGRT +Name[eo]=PIKA-BGRT +Name[es]=PIKA-BGRT +Name[eu]=PIKA-BGRT +Name[fr]=PIKA-BGRT +Name[fur]=PIKA-BGRT +Name[hr]=PIKA-BGRT +Name[hu]=PIKA-BGRT +Name[id]=PIKA-BGRT +Name[it]=PIKA-BGRT +Name[nl]=PIKA-BGRT +Name[pa]=PIKA-BGRT +Name[pl]=PIKA-BGRT +Name[pt_BR]=PIKA-BGRT +Name[ru]=PIKA-BGRT +Name[sr]=PIKA-BGRT +Name[sv]=PIKA-BGRT +Name[uk]=PIKA-BGRT +Name[zh_CN]=PIKA-BGRT +Name[ms]=PIKA-BGRT +Name[he]=PIKA-BGRT +Name[fa]=PIKA-BGRT +Name[fi]=PIKA-BGRT +Name=PIKA-BGRT +Description=PikaOS plymouth theme using the ACPI BGRT graphics as background +ModuleName=two-step + +[two-step] +Font=Fira Sans SemiBold 12 +TitleFont=Fira Sans Book 30 +ImageDir=/usr/share/plymouth/themes/pika +DialogHorizontalAlignment=.5 +DialogVerticalAlignment=.7 +TitleHorizontalAlignment=.5 +TitleVerticalAlignment=.382 +HorizontalAlignment=.5 +VerticalAlignment=.7 +WatermarkHorizontalAlignment=.5 +WatermarkVerticalAlignment=.96 +Transition=none +TransitionDuration=0.0 +BackgroundStartColor=0x000000 +BackgroundEndColor=0x000000 +ProgressBarBackgroundColor=0x606060 +ProgressBarForegroundColor=0xffffff +DialogClearsFirmwareBackground=false +MessageBelowAnimation=true + +[boot-up] +UseEndAnimation=false +UseFirmwareBackground=true + +[shutdown] +UseEndAnimation=false +UseFirmwareBackground=true + +[reboot] +UseEndAnimation=false +UseFirmwareBackground=true + +[updates] +SuppressMessages=true +ProgressBarShowPercentComplete=true +UseProgressBar=true +Title=Installing Updates... +SubTitle=Do not turn off your computer + +[system-upgrade] +SuppressMessages=true +ProgressBarShowPercentComplete=true +UseProgressBar=true +Title=Upgrading System... +SubTitle=Do not turn off your computer + +[firmware-upgrade] +SuppressMessages=true +ProgressBarShowPercentComplete=true +UseProgressBar=true +Title=Upgrading Firmware... +SubTitle=Do not turn off your computer diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-000.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-000.png new file mode 100644 index 0000000..eede67a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-000.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0001.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0001.png new file mode 100644 index 0000000..eede67a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0001.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0002.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0002.png new file mode 100644 index 0000000..ec238ff Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0002.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0003.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0003.png new file mode 100644 index 0000000..8f08899 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0003.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0004.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0004.png new file mode 100644 index 0000000..e49e591 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0004.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0005.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0005.png new file mode 100644 index 0000000..3693028 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0005.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0006.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0006.png new file mode 100644 index 0000000..b170a6e Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0006.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0007.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0007.png new file mode 100644 index 0000000..689ccae Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0007.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0008.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0008.png new file mode 100644 index 0000000..ec8ba70 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0008.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0009.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0009.png new file mode 100644 index 0000000..5bc002a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0009.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0010.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0010.png new file mode 100644 index 0000000..744331c Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0010.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0011.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0011.png new file mode 100644 index 0000000..33400c1 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0011.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0012.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0012.png new file mode 100644 index 0000000..89ed37f Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0012.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0013.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0013.png new file mode 100644 index 0000000..eede67a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0013.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0014.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0014.png new file mode 100644 index 0000000..ec238ff Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0014.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0015.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0015.png new file mode 100644 index 0000000..8f08899 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0015.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0016.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0016.png new file mode 100644 index 0000000..e49e591 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0016.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0017.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0017.png new file mode 100644 index 0000000..3693028 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0017.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0018.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0018.png new file mode 100644 index 0000000..b170a6e Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0018.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0019.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0019.png new file mode 100644 index 0000000..689ccae Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0019.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0020.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0020.png new file mode 100644 index 0000000..ec8ba70 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0020.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0021.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0021.png new file mode 100644 index 0000000..5bc002a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0021.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0022.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0022.png new file mode 100644 index 0000000..744331c Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0022.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0023.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0023.png new file mode 100644 index 0000000..33400c1 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0023.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0024.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0024.png new file mode 100644 index 0000000..89ed37f Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0024.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0025.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0025.png new file mode 100644 index 0000000..eede67a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0025.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0026.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0026.png new file mode 100644 index 0000000..ec238ff Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0026.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0027.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0027.png new file mode 100644 index 0000000..8f08899 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0027.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0028.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0028.png new file mode 100644 index 0000000..e49e591 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0028.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0029.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0029.png new file mode 100644 index 0000000..3693028 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0029.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0030.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0030.png new file mode 100644 index 0000000..b170a6e Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0030.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0031.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0031.png new file mode 100644 index 0000000..689ccae Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0031.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0032.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0032.png new file mode 100644 index 0000000..ec8ba70 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0032.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0033.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0033.png new file mode 100644 index 0000000..5bc002a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0033.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0034.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0034.png new file mode 100644 index 0000000..744331c Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0034.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0035.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0035.png new file mode 100644 index 0000000..33400c1 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0035.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0036.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0036.png new file mode 100644 index 0000000..89ed37f Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/animation-0036.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/bullet.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/bullet.png new file mode 100644 index 0000000..08c30f0 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/bullet.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/capslock.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/capslock.png new file mode 100644 index 0000000..6af23c8 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/capslock.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/entry.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/entry.png new file mode 100644 index 0000000..2fc724a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/entry.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/keyboard.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/keyboard.png new file mode 100644 index 0000000..16e6dc6 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/keyboard.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/keymap-render.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/keymap-render.png new file mode 100644 index 0000000..4aaed5a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/keymap-render.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/lock.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/lock.png new file mode 100644 index 0000000..595b42e Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/lock.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/pika.plymouth b/plymouth-theme-pika/usr/share/plymouth/themes/pika/pika.plymouth new file mode 100644 index 0000000..4156f6d --- /dev/null +++ b/plymouth-theme-pika/usr/share/plymouth/themes/pika/pika.plymouth @@ -0,0 +1,66 @@ +[Plymouth Theme] +Name[de]=Pika +Name[es]=Pika +Name[eu]=Pika +Name[id]=Pika +Name[it]=Pika +Name[nl]=Pika +Name[pl]=Pika +Name[pt_BR]=Pika +Name[sv]=Pika +Name[zh_CN]=Pika +Name[ms]=Pika +Name[fi]=Pika +Name=Pika +Description=A theme designed for PikaOS that features a spinning egg. +ModuleName=two-step + +[two-step] +Font=Cantarell 12 +TitleFont=Cantarell Light 30 +ImageDir=/usr/share/plymouth/themes/pika +DialogHorizontalAlignment=.5 +DialogVerticalAlignment=.382 +TitleHorizontalAlignment=.5 +TitleVerticalAlignment=.382 +HorizontalAlignment=.5 +VerticalAlignment=.7 +WatermarkHorizontalAlignment=.5 +WatermarkVerticalAlignment=.96 +Transition=none +TransitionDuration=0.0 +BackgroundStartColor=0x000000 +BackgroundEndColor=0x000000 +ProgressBarBackgroundColor=0x606060 +ProgressBarForegroundColor=0xffffff +MessageBelowAnimation=true + +[boot-up] +UseEndAnimation=false + +[shutdown] +UseEndAnimation=false + +[reboot] +UseEndAnimation=false + +[updates] +SuppressMessages=true +ProgressBarShowPercentComplete=true +UseProgressBar=true +Title=Installing Updates... +SubTitle=Do not turn off your computer + +[system-upgrade] +SuppressMessages=true +ProgressBarShowPercentComplete=true +UseProgressBar=true +Title=Upgrading System... +SubTitle=Do not turn off your computer + +[firmware-upgrade] +SuppressMessages=true +ProgressBarShowPercentComplete=true +UseProgressBar=true +Title=Upgrading Firmware... +SubTitle=Do not turn off your computer diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0001.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0001.png new file mode 100644 index 0000000..eede67a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0001.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0002.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0002.png new file mode 100644 index 0000000..ec238ff Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0002.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0003.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0003.png new file mode 100644 index 0000000..8f08899 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0003.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0004.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0004.png new file mode 100644 index 0000000..e49e591 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0004.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0005.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0005.png new file mode 100644 index 0000000..3693028 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0005.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0006.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0006.png new file mode 100644 index 0000000..b170a6e Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0006.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0007.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0007.png new file mode 100644 index 0000000..689ccae Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0007.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0008.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0008.png new file mode 100644 index 0000000..ec8ba70 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0008.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0009.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0009.png new file mode 100644 index 0000000..5bc002a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0009.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0010.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0010.png new file mode 100644 index 0000000..744331c Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0010.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0011.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0011.png new file mode 100644 index 0000000..33400c1 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0011.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0012.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0012.png new file mode 100644 index 0000000..89ed37f Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0012.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0013.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0013.png new file mode 100644 index 0000000..eede67a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0013.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0014.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0014.png new file mode 100644 index 0000000..ec238ff Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0014.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0015.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0015.png new file mode 100644 index 0000000..8f08899 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0015.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0016.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0016.png new file mode 100644 index 0000000..e49e591 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0016.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0017.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0017.png new file mode 100644 index 0000000..3693028 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0017.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0018.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0018.png new file mode 100644 index 0000000..b170a6e Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0018.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0019.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0019.png new file mode 100644 index 0000000..689ccae Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0019.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0020.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0020.png new file mode 100644 index 0000000..ec8ba70 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0020.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0021.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0021.png new file mode 100644 index 0000000..5bc002a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0021.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0022.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0022.png new file mode 100644 index 0000000..744331c Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0022.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0023.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0023.png new file mode 100644 index 0000000..33400c1 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0023.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0024.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0024.png new file mode 100644 index 0000000..89ed37f Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0024.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0025.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0025.png new file mode 100644 index 0000000..eede67a Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0025.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0026.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0026.png new file mode 100644 index 0000000..ec238ff Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0026.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0027.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0027.png new file mode 100644 index 0000000..8f08899 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0027.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0028.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0028.png new file mode 100644 index 0000000..e49e591 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0028.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0029.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0029.png new file mode 100644 index 0000000..3693028 Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0029.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0030.png b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0030.png new file mode 100644 index 0000000..b170a6e Binary files /dev/null and b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber-0030.png differ diff --git a/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber.svg b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber.svg new file mode 100644 index 0000000..477ad1a --- /dev/null +++ b/plymouth-theme-pika/usr/share/plymouth/themes/pika/throbber.svg @@ -0,0 +1,9 @@ + + one-white-egg-file-free-png + + + + + + \ No newline at end of file