commit d6e6e1361000d43a85b9508d67739ff2297c90d2 Author: Toshaan Bharvani Date: Wed Feb 21 21:19:41 2018 +0100 initial push Signed-off-by: Toshaan Bharvani diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..9ee37e4 --- /dev/null +++ b/COPYING @@ -0,0 +1,5 @@ +PowerEL, PowerEL Linux, and the PowerEL logo, either separately or in combination, are hereinafter referred to as "PowerEL Trademarks" and are trademarks of The PowerEL Project, registered in the Belgium and other countries. + +The powerel-logos package ("Package") contains images that are or include the PowerEL Trademarks and PowerEL trade dress. You are granted the right to use the Package only during the normal operation of software programs that call upon the Package. No other copyright or trademark license is granted herein. + +NO WARRANTY. THIS PACKAGE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND INTELLECTUAL PROPERTY NONINFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE PowerEL PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/CREDITS b/CREDITS new file mode 100644 index 0000000..02e7a62 --- /dev/null +++ b/CREDITS @@ -0,0 +1,12 @@ +Artwork in this package is derived from several sources. + +Backgrounds: + - Toshaan Bharvani + +Anaconda: + - Toshaan Bharvani + + +Assorted icons and images included in the PowerEL artwork are borrowed from the gnome developer's gnome-icon-theme. + +Fonts used are Exo, and Source Sans Pro. These are from Google's open fonts. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5320b37 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +NAME = powerel-logos +XML = backgrounds/desktop-backgrounds-powerel.xml + +all: update-po bootloader/powerel.icns + +bootloader/powerel.icns: pixmaps/powerel-logo-sprite.svg + convert -background none -resize 128x128 pixmaps/powerel-logo-sprite.svg pixmaps/powerel-logo-sprite.png + png2icns bootloader/powerel.icns pixmaps/powerel-logo-sprite.png + +update-po: + @echo "updating pot files..." + sed -e "s/_name/name/g" $(XML).in > $(XML) + # FIXME need to handle translations + # + #( cd po && intltool-update --gettext-package=$(NAME) --pot ) + #@echo "merging existing po files to xml..." + #intltool-merge -x po $(XML).in $(XML) diff --git a/anaconda/Makefile b/anaconda/Makefile new file mode 100644 index 0000000..b458068 --- /dev/null +++ b/anaconda/Makefile @@ -0,0 +1,28 @@ +ANACONDADATADIR = /usr/share/anaconda +ANACONDABOOTDIR = $(ANACONDADATADIR)/boot + +all: + @echo "Nothing to do." + +#splash.lss: syslinux-splash.png +# ./splashtolss.sh syslinux-splash.png splash.lss + +install: + @if [ "$(DESTDIR)" = "" ]; then \ + echo " "; \ + echo "ERROR: A destdir is required"; \ + exit 1; \ + fi + + mkdir -p $(DESTDIR)/$(ANACONDADATADIR) + mkdir -p $(DESTDIR)/$(ANACONDABOOTDIR) + mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/en + + install -m 644 splash.lss $(DESTDIR)/$(ANACONDABOOTDIR) + install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/syslinux-splash.png + # install -m 755 splashtolss.sh $(DESTDIR)/$(ANACONDADATADIR) + install -m 644 -t $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/en rnotes/en/* + install -m 644 -t $(DESTDIR)/$(ANACONDADATADIR)/pixmaps theme/* + +clean: + rm -f splash.lss diff --git a/anaconda/README b/anaconda/README new file mode 100644 index 0000000..7d06024 --- /dev/null +++ b/anaconda/README @@ -0,0 +1,19 @@ +These files are used by anaconda during the installation process. A +basic description/specification for them is as follows: + +* anaconda_header.png: This is strip header at the top of + the screen during the install. 800x58. +* progress_first.png: First graphic displayed during package + installation. If there are no rnotes, this is displayed the entire + time. 500x325 +* progress_first-lowres.png: Lowres version of progress_first.png. 350x225 +* splash.png: Splash screen shown on the "Welcome to ..." screen. + 400x420 +* syslinux-splash.png: Splash screen used at the boot prompt with + syslinux/isolinux. This gets transformed into the syslinux specific + format. 640x300. This uses a 16 color palette (should be an indexed png). + You should ensure that 0 = #000000, 1 = #ffffff, 7 = #cdcfd5, 15 = #c90000. + Alternately, you can use 12 colors and have them be any that you want. +* syslinux-vesa-splash.jpg: Splash screen used at the boot prompt when + using the menu. It should be 640x480 RGB. Can just be a conversion + of the grub splash and work well. diff --git a/anaconda/rnotes/en/powerel-builds.png b/anaconda/rnotes/en/powerel-builds.png new file mode 100644 index 0000000..1d61459 Binary files /dev/null and b/anaconda/rnotes/en/powerel-builds.png differ diff --git a/anaconda/rnotes/en/powerel-channels.png b/anaconda/rnotes/en/powerel-channels.png new file mode 100644 index 0000000..ccbea48 Binary files /dev/null and b/anaconda/rnotes/en/powerel-channels.png differ diff --git a/anaconda/rnotes/en/powerel-cloud.png b/anaconda/rnotes/en/powerel-cloud.png new file mode 100644 index 0000000..ae5549e Binary files /dev/null and b/anaconda/rnotes/en/powerel-cloud.png differ diff --git a/anaconda/rnotes/en/powerel-virtual.png b/anaconda/rnotes/en/powerel-virtual.png new file mode 100644 index 0000000..6dd6020 Binary files /dev/null and b/anaconda/rnotes/en/powerel-virtual.png differ diff --git a/anaconda/splash.lss b/anaconda/splash.lss new file mode 100644 index 0000000..5b7dd15 Binary files /dev/null and b/anaconda/splash.lss differ diff --git a/anaconda/splashtolss.sh b/anaconda/splashtolss.sh new file mode 100755 index 0000000..c595a99 --- /dev/null +++ b/anaconda/splashtolss.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +usage() { + echo "Usage: $0 " + exit 1 +} + +if [ -z "$1" -o -z "$2" ]; then + usage +fi + +pngtopnm $1 | ppmtolss16 \#cdcfd5=7 \#ffffff=1 \#000000=0 \#c90000=15 > $2 diff --git a/anaconda/syslinux-splash.png b/anaconda/syslinux-splash.png new file mode 100644 index 0000000..7b5cb8f Binary files /dev/null and b/anaconda/syslinux-splash.png differ diff --git a/anaconda/theme/.empty b/anaconda/theme/.empty new file mode 100644 index 0000000..da1585c --- /dev/null +++ b/anaconda/theme/.empty @@ -0,0 +1 @@ +I'm a folder! \ No newline at end of file diff --git a/anaconda/theme/sidebar-bg.png b/anaconda/theme/sidebar-bg.png new file mode 100644 index 0000000..91288ad Binary files /dev/null and b/anaconda/theme/sidebar-bg.png differ diff --git a/anaconda/theme/sidebar-logo.png b/anaconda/theme/sidebar-logo.png new file mode 100644 index 0000000..85de9ce Binary files /dev/null and b/anaconda/theme/sidebar-logo.png differ diff --git a/anaconda/theme/topbar-bg.png b/anaconda/theme/topbar-bg.png new file mode 100644 index 0000000..3f96c95 Binary files /dev/null and b/anaconda/theme/topbar-bg.png differ diff --git a/backgrounds/10_org.gnome.desktop.background.default.gschema.override b/backgrounds/10_org.gnome.desktop.background.default.gschema.override new file mode 100644 index 0000000..bf2d4e6 --- /dev/null +++ b/backgrounds/10_org.gnome.desktop.background.default.gschema.override @@ -0,0 +1,3 @@ +[org.gnome.desktop.background] +picture-uri='file:///usr/share/backgrounds/default.xml' + diff --git a/backgrounds/day.jpg b/backgrounds/day.jpg new file mode 100644 index 0000000..5fc8cf5 Binary files /dev/null and b/backgrounds/day.jpg differ diff --git a/backgrounds/default.jpg b/backgrounds/default.jpg new file mode 100644 index 0000000..db6b14a Binary files /dev/null and b/backgrounds/default.jpg differ diff --git a/backgrounds/default.png b/backgrounds/default.png new file mode 100644 index 0000000..7b1f0e5 Binary files /dev/null and b/backgrounds/default.png differ diff --git a/backgrounds/default.xml b/backgrounds/default.xml new file mode 100644 index 0000000..ed04702 --- /dev/null +++ b/backgrounds/default.xml @@ -0,0 +1,51 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + + + + + +3600.0 +/usr/share/backgrounds/morning.jpg + + + + +18000.0 +/usr/share/backgrounds/morning.jpg +/usr/share/backgrounds/day.jpg + + + + +18000.0 +/usr/share/backgrounds/day.jpg + + + + +21600.0 +/usr/share/backgrounds/day.jpg +/usr/share/backgrounds/night.jpg + + + + +18000.0 +/usr/share/backgrounds/night.jpg + + + + +7200.0 +/usr/share/backgrounds/night.jpg +/usr/share/backgrounds/morning.jpg + + diff --git a/backgrounds/desktop-backgrounds-default.xml b/backgrounds/desktop-backgrounds-default.xml new file mode 100644 index 0000000..1bcadef --- /dev/null +++ b/backgrounds/desktop-backgrounds-default.xml @@ -0,0 +1,9 @@ + + + + + PowerEL Default Background + /usr/share/backgrounds/default.xml + zoom + + diff --git a/backgrounds/morning.jpg b/backgrounds/morning.jpg new file mode 100644 index 0000000..aa1e7ce Binary files /dev/null and b/backgrounds/morning.jpg differ diff --git a/backgrounds/night.jpg b/backgrounds/night.jpg new file mode 100644 index 0000000..02444a7 Binary files /dev/null and b/backgrounds/night.jpg differ diff --git a/backgrounds/powerel7-timed.xml b/backgrounds/powerel7-timed.xml new file mode 100644 index 0000000..064a5b3 --- /dev/null +++ b/backgrounds/powerel7-timed.xml @@ -0,0 +1,51 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + + + + + +3600.0 +/usr/share/themes/PowerEL7/backgrounds/morning.jpg + + + + +18000.0 +/usr/share/themes/PowerEL7/backgrounds/morning.jpg +/usr/share/themes/PowerEL7/backgrounds/day.jpg + + + + +18000.0 +/usr/share/themes/PowerEL7/backgrounds/day.jpg + + + + +21600.0 +/usr/share/themes/PowerEL7/backgrounds/day.jpg +/usr/share/themes/PowerEL7/backgrounds/night.jpg + + + + +18000.0 +/usr/share/themes/PowerEL7/backgrounds/night.jpg + + + + +7200.0 +/usr/share/themes/PowerEL7/backgrounds/night.jpg +/usr/share/themes/PowerEL7/backgrounds/morning.jpg + + diff --git a/bootloader/fedora.icns b/bootloader/fedora.icns new file mode 100644 index 0000000..18559e2 Binary files /dev/null and b/bootloader/fedora.icns differ diff --git a/bootloader/splash.xpm.gz b/bootloader/splash.xpm.gz new file mode 100644 index 0000000..2296649 Binary files /dev/null and b/bootloader/splash.xpm.gz differ diff --git a/debugfiles.list b/debugfiles.list new file mode 100644 index 0000000..e69de29 diff --git a/debuglinks.list b/debuglinks.list new file mode 100644 index 0000000..e69de29 diff --git a/debugsources.list b/debugsources.list new file mode 100644 index 0000000..e69de29 diff --git a/elfbins.list b/elfbins.list new file mode 100644 index 0000000..e69de29 diff --git a/firstboot/firstboot-left.png b/firstboot/firstboot-left.png new file mode 100644 index 0000000..2670391 Binary files /dev/null and b/firstboot/firstboot-left.png differ diff --git a/firstboot/workstation.png b/firstboot/workstation.png new file mode 100644 index 0000000..c744168 Binary files /dev/null and b/firstboot/workstation.png differ diff --git a/icons/hicolor/16x16/apps/powerel-logo-icon.png b/icons/hicolor/16x16/apps/powerel-logo-icon.png new file mode 100644 index 0000000..5eac440 Binary files /dev/null and b/icons/hicolor/16x16/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/16x16/apps/system-logo-icon.png b/icons/hicolor/16x16/apps/system-logo-icon.png new file mode 100644 index 0000000..b71c822 Binary files /dev/null and b/icons/hicolor/16x16/apps/system-logo-icon.png differ diff --git a/icons/hicolor/22x22/apps/powerel-logo-icon.png b/icons/hicolor/22x22/apps/powerel-logo-icon.png new file mode 100644 index 0000000..878ef07 Binary files /dev/null and b/icons/hicolor/22x22/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/22x22/apps/system-logo-icon.png b/icons/hicolor/22x22/apps/system-logo-icon.png new file mode 100644 index 0000000..af6a66e Binary files /dev/null and b/icons/hicolor/22x22/apps/system-logo-icon.png differ diff --git a/icons/hicolor/24x24/apps/powerel-logo-icon.png b/icons/hicolor/24x24/apps/powerel-logo-icon.png new file mode 100644 index 0000000..8facb16 Binary files /dev/null and b/icons/hicolor/24x24/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/24x24/apps/system-logo-icon.png b/icons/hicolor/24x24/apps/system-logo-icon.png new file mode 100644 index 0000000..ea7c0bb Binary files /dev/null and b/icons/hicolor/24x24/apps/system-logo-icon.png differ diff --git a/icons/hicolor/256x256/apps/powerel-logo-icon.png b/icons/hicolor/256x256/apps/powerel-logo-icon.png new file mode 100644 index 0000000..1b88f12 Binary files /dev/null and b/icons/hicolor/256x256/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/256x256/apps/system-logo-icon.png b/icons/hicolor/256x256/apps/system-logo-icon.png new file mode 100644 index 0000000..939dac9 Binary files /dev/null and b/icons/hicolor/256x256/apps/system-logo-icon.png differ diff --git a/icons/hicolor/32x32/apps/powerel-logo-icon.png b/icons/hicolor/32x32/apps/powerel-logo-icon.png new file mode 100644 index 0000000..3146ec9 Binary files /dev/null and b/icons/hicolor/32x32/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/32x32/apps/system-logo-icon.png b/icons/hicolor/32x32/apps/system-logo-icon.png new file mode 100644 index 0000000..af0f4ed Binary files /dev/null and b/icons/hicolor/32x32/apps/system-logo-icon.png differ diff --git a/icons/hicolor/36x36/apps/powerel-logo-icon.png b/icons/hicolor/36x36/apps/powerel-logo-icon.png new file mode 100644 index 0000000..b5f0a60 Binary files /dev/null and b/icons/hicolor/36x36/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/36x36/apps/system-logo-icon.png b/icons/hicolor/36x36/apps/system-logo-icon.png new file mode 100644 index 0000000..31489fa Binary files /dev/null and b/icons/hicolor/36x36/apps/system-logo-icon.png differ diff --git a/icons/hicolor/48x48/apps/anaconda.png b/icons/hicolor/48x48/apps/anaconda.png new file mode 100644 index 0000000..4d58368 Binary files /dev/null and b/icons/hicolor/48x48/apps/anaconda.png differ diff --git a/icons/hicolor/48x48/apps/powerel-logo-icon.png b/icons/hicolor/48x48/apps/powerel-logo-icon.png new file mode 100644 index 0000000..5d932cc Binary files /dev/null and b/icons/hicolor/48x48/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/48x48/apps/system-logo-icon.png b/icons/hicolor/48x48/apps/system-logo-icon.png new file mode 100644 index 0000000..70fafa2 Binary files /dev/null and b/icons/hicolor/48x48/apps/system-logo-icon.png differ diff --git a/icons/hicolor/96x96/apps/powerel-logo-icon.png b/icons/hicolor/96x96/apps/powerel-logo-icon.png new file mode 100644 index 0000000..027cddd Binary files /dev/null and b/icons/hicolor/96x96/apps/powerel-logo-icon.png differ diff --git a/icons/hicolor/96x96/apps/system-logo-icon.png b/icons/hicolor/96x96/apps/system-logo-icon.png new file mode 100644 index 0000000..c54b437 Binary files /dev/null and b/icons/hicolor/96x96/apps/system-logo-icon.png differ diff --git a/icons/hicolor/scalable/apps/powerel-logo-icon.svg b/icons/hicolor/scalable/apps/powerel-logo-icon.svg new file mode 100644 index 0000000..7df1547 --- /dev/null +++ b/icons/hicolor/scalable/apps/powerel-logo-icon.svg @@ -0,0 +1,85 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + PEL + diff --git a/pixmaps/poweredby.png b/pixmaps/poweredby.png new file mode 100644 index 0000000..1429305 Binary files /dev/null and b/pixmaps/poweredby.png differ diff --git a/pixmaps/powerel-logo-small.png b/pixmaps/powerel-logo-small.png new file mode 100644 index 0000000..6e15686 Binary files /dev/null and b/pixmaps/powerel-logo-small.png differ diff --git a/pixmaps/powerel-logo-sprite.png b/pixmaps/powerel-logo-sprite.png new file mode 100644 index 0000000..6179413 Binary files /dev/null and b/pixmaps/powerel-logo-sprite.png differ diff --git a/pixmaps/powerel-logo-sprite.svg b/pixmaps/powerel-logo-sprite.svg new file mode 100644 index 0000000..041e131 --- /dev/null +++ b/pixmaps/powerel-logo-sprite.svg @@ -0,0 +1,85 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + PEL + diff --git a/pixmaps/powerel-logo.png b/pixmaps/powerel-logo.png new file mode 100644 index 0000000..5e0d7f1 Binary files /dev/null and b/pixmaps/powerel-logo.png differ diff --git a/pixmaps/system-logo-white.png b/pixmaps/system-logo-white.png new file mode 100644 index 0000000..f1d72eb Binary files /dev/null and b/pixmaps/system-logo-white.png differ diff --git a/plymouth/charge/animation-0001.png b/plymouth/charge/animation-0001.png new file mode 100644 index 0000000..3819624 Binary files /dev/null and b/plymouth/charge/animation-0001.png differ diff --git a/plymouth/charge/animation-0002.png b/plymouth/charge/animation-0002.png new file mode 100644 index 0000000..33db36d Binary files /dev/null and b/plymouth/charge/animation-0002.png differ diff --git a/plymouth/charge/animation-0003.png b/plymouth/charge/animation-0003.png new file mode 100644 index 0000000..3f1fdcd Binary files /dev/null and b/plymouth/charge/animation-0003.png differ diff --git a/plymouth/charge/animation-0004.png b/plymouth/charge/animation-0004.png new file mode 100644 index 0000000..bfd03b4 Binary files /dev/null and b/plymouth/charge/animation-0004.png differ diff --git a/plymouth/charge/animation-0005.png b/plymouth/charge/animation-0005.png new file mode 100644 index 0000000..16cbdce Binary files /dev/null and b/plymouth/charge/animation-0005.png differ diff --git a/plymouth/charge/animation-0006.png b/plymouth/charge/animation-0006.png new file mode 100644 index 0000000..50ae7d4 Binary files /dev/null and b/plymouth/charge/animation-0006.png differ diff --git a/plymouth/charge/animation-0007.png b/plymouth/charge/animation-0007.png new file mode 100644 index 0000000..8d339a7 Binary files /dev/null and b/plymouth/charge/animation-0007.png differ diff --git a/plymouth/charge/animation-0008.png b/plymouth/charge/animation-0008.png new file mode 100644 index 0000000..076b300 Binary files /dev/null and b/plymouth/charge/animation-0008.png differ diff --git a/plymouth/charge/animation-0009.png b/plymouth/charge/animation-0009.png new file mode 100644 index 0000000..c39a878 Binary files /dev/null and b/plymouth/charge/animation-0009.png differ diff --git a/plymouth/charge/animation-0010.png b/plymouth/charge/animation-0010.png new file mode 100644 index 0000000..a1422af Binary files /dev/null and b/plymouth/charge/animation-0010.png differ diff --git a/plymouth/charge/animation-0011.png b/plymouth/charge/animation-0011.png new file mode 100644 index 0000000..b3418ec Binary files /dev/null and b/plymouth/charge/animation-0011.png differ diff --git a/plymouth/charge/animation-0012.png b/plymouth/charge/animation-0012.png new file mode 100644 index 0000000..a041247 Binary files /dev/null and b/plymouth/charge/animation-0012.png differ diff --git a/plymouth/charge/animation-0013.png b/plymouth/charge/animation-0013.png new file mode 100644 index 0000000..db1f120 Binary files /dev/null and b/plymouth/charge/animation-0013.png differ diff --git a/plymouth/charge/animation-0014.png b/plymouth/charge/animation-0014.png new file mode 100644 index 0000000..fff1ef2 Binary files /dev/null and b/plymouth/charge/animation-0014.png differ diff --git a/plymouth/charge/animation-0015.png b/plymouth/charge/animation-0015.png new file mode 100644 index 0000000..207553e Binary files /dev/null and b/plymouth/charge/animation-0015.png differ diff --git a/plymouth/charge/animation-0016.png b/plymouth/charge/animation-0016.png new file mode 100644 index 0000000..0d78362 Binary files /dev/null and b/plymouth/charge/animation-0016.png differ diff --git a/plymouth/charge/animation-0017.png b/plymouth/charge/animation-0017.png new file mode 100644 index 0000000..d5fad96 Binary files /dev/null and b/plymouth/charge/animation-0017.png differ diff --git a/plymouth/charge/animation-0018.png b/plymouth/charge/animation-0018.png new file mode 100644 index 0000000..902c837 Binary files /dev/null and b/plymouth/charge/animation-0018.png differ diff --git a/plymouth/charge/animation-0019.png b/plymouth/charge/animation-0019.png new file mode 100644 index 0000000..7ba8e42 Binary files /dev/null and b/plymouth/charge/animation-0019.png differ diff --git a/plymouth/charge/animation-0020.png b/plymouth/charge/animation-0020.png new file mode 100644 index 0000000..20c0038 Binary files /dev/null and b/plymouth/charge/animation-0020.png differ diff --git a/plymouth/charge/animation-0021.png b/plymouth/charge/animation-0021.png new file mode 100644 index 0000000..e031aa3 Binary files /dev/null and b/plymouth/charge/animation-0021.png differ diff --git a/plymouth/charge/animation-0022.png b/plymouth/charge/animation-0022.png new file mode 100644 index 0000000..31af1fd Binary files /dev/null and b/plymouth/charge/animation-0022.png differ diff --git a/plymouth/charge/animation-0023.png b/plymouth/charge/animation-0023.png new file mode 100644 index 0000000..27f73d1 Binary files /dev/null and b/plymouth/charge/animation-0023.png differ diff --git a/plymouth/charge/animation-0024.png b/plymouth/charge/animation-0024.png new file mode 100644 index 0000000..88ad349 Binary files /dev/null and b/plymouth/charge/animation-0024.png differ diff --git a/plymouth/charge/animation-0025.png b/plymouth/charge/animation-0025.png new file mode 100644 index 0000000..cbfc3c9 Binary files /dev/null and b/plymouth/charge/animation-0025.png differ diff --git a/plymouth/charge/animation-0026.png b/plymouth/charge/animation-0026.png new file mode 100644 index 0000000..88ca75e Binary files /dev/null and b/plymouth/charge/animation-0026.png differ diff --git a/plymouth/charge/animation-0027.png b/plymouth/charge/animation-0027.png new file mode 100644 index 0000000..7570ea0 Binary files /dev/null and b/plymouth/charge/animation-0027.png differ diff --git a/plymouth/charge/animation-0028.png b/plymouth/charge/animation-0028.png new file mode 100644 index 0000000..6bd4cc9 Binary files /dev/null and b/plymouth/charge/animation-0028.png differ diff --git a/plymouth/charge/animation-0029.png b/plymouth/charge/animation-0029.png new file mode 100644 index 0000000..2999ed0 Binary files /dev/null and b/plymouth/charge/animation-0029.png differ diff --git a/plymouth/charge/animation-0030.png b/plymouth/charge/animation-0030.png new file mode 100644 index 0000000..1d9c8fa Binary files /dev/null and b/plymouth/charge/animation-0030.png differ diff --git a/plymouth/charge/animation-0031.png b/plymouth/charge/animation-0031.png new file mode 100644 index 0000000..9a49743 Binary files /dev/null and b/plymouth/charge/animation-0031.png differ diff --git a/plymouth/charge/animation-0032.png b/plymouth/charge/animation-0032.png new file mode 100644 index 0000000..46c65d5 Binary files /dev/null and b/plymouth/charge/animation-0032.png differ diff --git a/plymouth/charge/animation-0033.png b/plymouth/charge/animation-0033.png new file mode 100644 index 0000000..4ae9207 Binary files /dev/null and b/plymouth/charge/animation-0033.png differ diff --git a/plymouth/charge/animation-0034.png b/plymouth/charge/animation-0034.png new file mode 100644 index 0000000..3b053de Binary files /dev/null and b/plymouth/charge/animation-0034.png differ diff --git a/plymouth/charge/animation-0035.png b/plymouth/charge/animation-0035.png new file mode 100644 index 0000000..6f402ff Binary files /dev/null and b/plymouth/charge/animation-0035.png differ diff --git a/plymouth/charge/animation-0036.png b/plymouth/charge/animation-0036.png new file mode 100644 index 0000000..7bee0a0 Binary files /dev/null and b/plymouth/charge/animation-0036.png differ diff --git a/plymouth/charge/background-tile.png b/plymouth/charge/background-tile.png new file mode 100644 index 0000000..6b70a2d Binary files /dev/null and b/plymouth/charge/background-tile.png differ diff --git a/plymouth/charge/throbber-0001.png b/plymouth/charge/throbber-0001.png new file mode 100644 index 0000000..3819624 Binary files /dev/null and b/plymouth/charge/throbber-0001.png differ diff --git a/plymouth/charge/throbber-0002.png b/plymouth/charge/throbber-0002.png new file mode 100644 index 0000000..40d8be6 Binary files /dev/null and b/plymouth/charge/throbber-0002.png differ diff --git a/plymouth/charge/throbber-0003.png b/plymouth/charge/throbber-0003.png new file mode 100644 index 0000000..ecee0e1 Binary files /dev/null and b/plymouth/charge/throbber-0003.png differ diff --git a/plymouth/charge/throbber-0004.png b/plymouth/charge/throbber-0004.png new file mode 100644 index 0000000..e96f7ff Binary files /dev/null and b/plymouth/charge/throbber-0004.png differ diff --git a/plymouth/charge/throbber-0005.png b/plymouth/charge/throbber-0005.png new file mode 100644 index 0000000..b78133e Binary files /dev/null and b/plymouth/charge/throbber-0005.png differ diff --git a/plymouth/charge/throbber-0006.png b/plymouth/charge/throbber-0006.png new file mode 100644 index 0000000..1a12e8e Binary files /dev/null and b/plymouth/charge/throbber-0006.png differ diff --git a/plymouth/charge/throbber-0007.png b/plymouth/charge/throbber-0007.png new file mode 100644 index 0000000..3150771 Binary files /dev/null and b/plymouth/charge/throbber-0007.png differ diff --git a/plymouth/charge/throbber-0008.png b/plymouth/charge/throbber-0008.png new file mode 100644 index 0000000..4772a97 Binary files /dev/null and b/plymouth/charge/throbber-0008.png differ diff --git a/plymouth/charge/throbber-0009.png b/plymouth/charge/throbber-0009.png new file mode 100644 index 0000000..35bc481 Binary files /dev/null and b/plymouth/charge/throbber-0009.png differ diff --git a/plymouth/charge/throbber-0010.png b/plymouth/charge/throbber-0010.png new file mode 100644 index 0000000..3e8a889 Binary files /dev/null and b/plymouth/charge/throbber-0010.png differ diff --git a/plymouth/charge/throbber-0011.png b/plymouth/charge/throbber-0011.png new file mode 100644 index 0000000..ec84418 Binary files /dev/null and b/plymouth/charge/throbber-0011.png differ diff --git a/plymouth/charge/throbber-0012.png b/plymouth/charge/throbber-0012.png new file mode 100644 index 0000000..91fef16 Binary files /dev/null and b/plymouth/charge/throbber-0012.png differ diff --git a/plymouth/charge/watermark.png b/plymouth/charge/watermark.png new file mode 100644 index 0000000..75b8739 Binary files /dev/null and b/plymouth/charge/watermark.png differ diff --git a/powerel/powerel_logo.svg b/powerel/powerel_logo.svg new file mode 100644 index 0000000..dbad3f7 --- /dev/null +++ b/powerel/powerel_logo.svg @@ -0,0 +1,85 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + PowerEL + diff --git a/powerel/powerel_logo_darkbackground.svg b/powerel/powerel_logo_darkbackground.svg new file mode 100644 index 0000000..2dcbe52 --- /dev/null +++ b/powerel/powerel_logo_darkbackground.svg @@ -0,0 +1,163 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PEL + +