commit c0020194fb1d313e1c1285a81eb3ee67c083a90a Author: Hayden Young Date: Mon Dec 28 22:52:28 2020 +0000 chore: init repo diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..3d4fabd --- /dev/null +++ b/COPYING @@ -0,0 +1,20 @@ +Rocky Linux and the Rocky Linux logo, either separately or in combination, +are hereinafter referred to as "Rocky Linux Trademarks" and are trademarks of +The Rocky Linux Foundation, registered in the United States. + +The rocky-logos package ("Package") contains images that are or include the +Rocky Linux Trademarks and Rocky Linux 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 CENTOS 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..8af4bc6 --- /dev/null +++ b/CREDITS @@ -0,0 +1,13 @@ +Artwork in this package is derived from several sources. + +Backgrounds: + - Hayden Young + +Anaconda: + - Hayden Young + + +Assorted icons and images included in the Rocky Linux artwork are borrowed from the +MIT-licensed Heroicons (https://heroicons.com). + +Font used is Rocky Display from https://github.com/rocky-linux/rocky-fonts diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..077c3b5 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +NAME = redhat-logos +XML = backgrounds/desktop-backgrounds-default.xml + +all: update-po + +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..c4a07e6 --- /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 + 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) + for i in $(shell "ls rnotes");do \ + install -m 644 -t $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/$$i rnotes/$$i/*; \ + done + 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/01-centos-welcome.png b/anaconda/rnotes/en/01-centos-welcome.png new file mode 100644 index 0000000..9e304d5 Binary files /dev/null and b/anaconda/rnotes/en/01-centos-welcome.png differ diff --git a/anaconda/rnotes/en/02-centos-sig-core.png b/anaconda/rnotes/en/02-centos-sig-core.png new file mode 100644 index 0000000..9570e94 Binary files /dev/null and b/anaconda/rnotes/en/02-centos-sig-core.png differ diff --git a/anaconda/rnotes/en/03-centos-sig-altarch.png b/anaconda/rnotes/en/03-centos-sig-altarch.png new file mode 100644 index 0000000..0d37d8a Binary files /dev/null and b/anaconda/rnotes/en/03-centos-sig-altarch.png differ diff --git a/anaconda/rnotes/en/04-centos-sig-artwork.png b/anaconda/rnotes/en/04-centos-sig-artwork.png new file mode 100644 index 0000000..7bba52e Binary files /dev/null and b/anaconda/rnotes/en/04-centos-sig-artwork.png differ diff --git a/anaconda/rnotes/en/05-centos-sig-atomic.png b/anaconda/rnotes/en/05-centos-sig-atomic.png new file mode 100644 index 0000000..f5e9164 Binary files /dev/null and b/anaconda/rnotes/en/05-centos-sig-atomic.png differ diff --git a/anaconda/rnotes/en/06-centos-sig-cloud.png b/anaconda/rnotes/en/06-centos-sig-cloud.png new file mode 100644 index 0000000..c4ac9f9 Binary files /dev/null and b/anaconda/rnotes/en/06-centos-sig-cloud.png differ diff --git a/anaconda/rnotes/en/07-centos-sig-cloudinstance.png b/anaconda/rnotes/en/07-centos-sig-cloudinstance.png new file mode 100644 index 0000000..44ef139 Binary files /dev/null and b/anaconda/rnotes/en/07-centos-sig-cloudinstance.png differ diff --git a/anaconda/rnotes/en/08-centos-sig-cm.png b/anaconda/rnotes/en/08-centos-sig-cm.png new file mode 100644 index 0000000..b823c31 Binary files /dev/null and b/anaconda/rnotes/en/08-centos-sig-cm.png differ diff --git a/anaconda/rnotes/en/09-centos-sig-nfv.png b/anaconda/rnotes/en/09-centos-sig-nfv.png new file mode 100644 index 0000000..127a420 Binary files /dev/null and b/anaconda/rnotes/en/09-centos-sig-nfv.png differ diff --git a/anaconda/rnotes/en/10-centos-sig-optools.png b/anaconda/rnotes/en/10-centos-sig-optools.png new file mode 100644 index 0000000..03031fa Binary files /dev/null and b/anaconda/rnotes/en/10-centos-sig-optools.png differ diff --git a/anaconda/rnotes/en/11-centos-sig-paas.png b/anaconda/rnotes/en/11-centos-sig-paas.png new file mode 100644 index 0000000..90eade1 Binary files /dev/null and b/anaconda/rnotes/en/11-centos-sig-paas.png differ diff --git a/anaconda/rnotes/en/12-centos-sig-promo.png b/anaconda/rnotes/en/12-centos-sig-promo.png new file mode 100644 index 0000000..eaf8cd8 Binary files /dev/null and b/anaconda/rnotes/en/12-centos-sig-promo.png differ diff --git a/anaconda/rnotes/en/13-centos-sig-publicci.png b/anaconda/rnotes/en/13-centos-sig-publicci.png new file mode 100644 index 0000000..61a0f60 Binary files /dev/null and b/anaconda/rnotes/en/13-centos-sig-publicci.png differ diff --git a/anaconda/rnotes/en/14-centos-sig-sc.png b/anaconda/rnotes/en/14-centos-sig-sc.png new file mode 100644 index 0000000..f0606ef Binary files /dev/null and b/anaconda/rnotes/en/14-centos-sig-sc.png differ diff --git a/anaconda/rnotes/en/15-centos-sig-storage.png b/anaconda/rnotes/en/15-centos-sig-storage.png new file mode 100644 index 0000000..452773e Binary files /dev/null and b/anaconda/rnotes/en/15-centos-sig-storage.png differ diff --git a/anaconda/rnotes/en/16-centos-sig-virt.png b/anaconda/rnotes/en/16-centos-sig-virt.png new file mode 100644 index 0000000..7b81954 Binary files /dev/null and b/anaconda/rnotes/en/16-centos-sig-virt.png differ diff --git a/anaconda/rnotes/en_US/01-centos-welcome.png b/anaconda/rnotes/en_US/01-centos-welcome.png new file mode 100644 index 0000000..9e304d5 Binary files /dev/null and b/anaconda/rnotes/en_US/01-centos-welcome.png differ diff --git a/anaconda/rnotes/en_US/02-centos-sig-core.png b/anaconda/rnotes/en_US/02-centos-sig-core.png new file mode 100644 index 0000000..9570e94 Binary files /dev/null and b/anaconda/rnotes/en_US/02-centos-sig-core.png differ diff --git a/anaconda/rnotes/en_US/03-centos-sig-altarch.png b/anaconda/rnotes/en_US/03-centos-sig-altarch.png new file mode 100644 index 0000000..0d37d8a Binary files /dev/null and b/anaconda/rnotes/en_US/03-centos-sig-altarch.png differ diff --git a/anaconda/rnotes/en_US/04-centos-sig-artwork.png b/anaconda/rnotes/en_US/04-centos-sig-artwork.png new file mode 100644 index 0000000..7bba52e Binary files /dev/null and b/anaconda/rnotes/en_US/04-centos-sig-artwork.png differ diff --git a/anaconda/rnotes/en_US/05-centos-sig-atomic.png b/anaconda/rnotes/en_US/05-centos-sig-atomic.png new file mode 100644 index 0000000..f5e9164 Binary files /dev/null and b/anaconda/rnotes/en_US/05-centos-sig-atomic.png differ diff --git a/anaconda/rnotes/en_US/06-centos-sig-cloud.png b/anaconda/rnotes/en_US/06-centos-sig-cloud.png new file mode 100644 index 0000000..c4ac9f9 Binary files /dev/null and b/anaconda/rnotes/en_US/06-centos-sig-cloud.png differ diff --git a/anaconda/rnotes/en_US/07-centos-sig-cloudinstance.png b/anaconda/rnotes/en_US/07-centos-sig-cloudinstance.png new file mode 100644 index 0000000..44ef139 Binary files /dev/null and b/anaconda/rnotes/en_US/07-centos-sig-cloudinstance.png differ diff --git a/anaconda/rnotes/en_US/08-centos-sig-cm.png b/anaconda/rnotes/en_US/08-centos-sig-cm.png new file mode 100644 index 0000000..b823c31 Binary files /dev/null and b/anaconda/rnotes/en_US/08-centos-sig-cm.png differ diff --git a/anaconda/rnotes/en_US/09-centos-sig-nfv.png b/anaconda/rnotes/en_US/09-centos-sig-nfv.png new file mode 100644 index 0000000..127a420 Binary files /dev/null and b/anaconda/rnotes/en_US/09-centos-sig-nfv.png differ diff --git a/anaconda/rnotes/en_US/10-centos-sig-optools.png b/anaconda/rnotes/en_US/10-centos-sig-optools.png new file mode 100644 index 0000000..03031fa Binary files /dev/null and b/anaconda/rnotes/en_US/10-centos-sig-optools.png differ diff --git a/anaconda/rnotes/en_US/11-centos-sig-paas.png b/anaconda/rnotes/en_US/11-centos-sig-paas.png new file mode 100644 index 0000000..90eade1 Binary files /dev/null and b/anaconda/rnotes/en_US/11-centos-sig-paas.png differ diff --git a/anaconda/rnotes/en_US/12-centos-sig-promo.png b/anaconda/rnotes/en_US/12-centos-sig-promo.png new file mode 100644 index 0000000..eaf8cd8 Binary files /dev/null and b/anaconda/rnotes/en_US/12-centos-sig-promo.png differ diff --git a/anaconda/rnotes/en_US/13-centos-sig-publicci.png b/anaconda/rnotes/en_US/13-centos-sig-publicci.png new file mode 100644 index 0000000..61a0f60 Binary files /dev/null and b/anaconda/rnotes/en_US/13-centos-sig-publicci.png differ diff --git a/anaconda/rnotes/en_US/14-centos-sig-sc.png b/anaconda/rnotes/en_US/14-centos-sig-sc.png new file mode 100644 index 0000000..f0606ef Binary files /dev/null and b/anaconda/rnotes/en_US/14-centos-sig-sc.png differ diff --git a/anaconda/rnotes/en_US/15-centos-sig-storage.png b/anaconda/rnotes/en_US/15-centos-sig-storage.png new file mode 100644 index 0000000..452773e Binary files /dev/null and b/anaconda/rnotes/en_US/15-centos-sig-storage.png differ diff --git a/anaconda/rnotes/en_US/16-centos-sig-virt.png b/anaconda/rnotes/en_US/16-centos-sig-virt.png new file mode 100644 index 0000000..7b81954 Binary files /dev/null and b/anaconda/rnotes/en_US/16-centos-sig-virt.png differ diff --git a/anaconda/rnotes/es_ES/01-centos-welcome.png b/anaconda/rnotes/es_ES/01-centos-welcome.png new file mode 100644 index 0000000..22b4116 Binary files /dev/null and b/anaconda/rnotes/es_ES/01-centos-welcome.png differ diff --git a/anaconda/rnotes/es_ES/02-centos-sig-core.png b/anaconda/rnotes/es_ES/02-centos-sig-core.png new file mode 100644 index 0000000..913ccb9 Binary files /dev/null and b/anaconda/rnotes/es_ES/02-centos-sig-core.png differ diff --git a/anaconda/rnotes/es_ES/03-centos-sig-altarch.png b/anaconda/rnotes/es_ES/03-centos-sig-altarch.png new file mode 100644 index 0000000..0ec9dce Binary files /dev/null and b/anaconda/rnotes/es_ES/03-centos-sig-altarch.png differ diff --git a/anaconda/rnotes/es_ES/04-centos-sig-artwork.png b/anaconda/rnotes/es_ES/04-centos-sig-artwork.png new file mode 100644 index 0000000..11dd9b8 Binary files /dev/null and b/anaconda/rnotes/es_ES/04-centos-sig-artwork.png differ diff --git a/anaconda/rnotes/es_ES/05-centos-sig-atomic.png b/anaconda/rnotes/es_ES/05-centos-sig-atomic.png new file mode 100644 index 0000000..bc2c836 Binary files /dev/null and b/anaconda/rnotes/es_ES/05-centos-sig-atomic.png differ diff --git a/anaconda/rnotes/es_ES/06-centos-sig-cloud.png b/anaconda/rnotes/es_ES/06-centos-sig-cloud.png new file mode 100644 index 0000000..a4e26fc Binary files /dev/null and b/anaconda/rnotes/es_ES/06-centos-sig-cloud.png differ diff --git a/anaconda/rnotes/es_ES/07-centos-sig-cloudinstance.png b/anaconda/rnotes/es_ES/07-centos-sig-cloudinstance.png new file mode 100644 index 0000000..aa314c8 Binary files /dev/null and b/anaconda/rnotes/es_ES/07-centos-sig-cloudinstance.png differ diff --git a/anaconda/rnotes/es_ES/08-centos-sig-cm.png b/anaconda/rnotes/es_ES/08-centos-sig-cm.png new file mode 100644 index 0000000..32f6672 Binary files /dev/null and b/anaconda/rnotes/es_ES/08-centos-sig-cm.png differ diff --git a/anaconda/rnotes/es_ES/09-centos-sig-nfv.png b/anaconda/rnotes/es_ES/09-centos-sig-nfv.png new file mode 100644 index 0000000..8a5748f Binary files /dev/null and b/anaconda/rnotes/es_ES/09-centos-sig-nfv.png differ diff --git a/anaconda/rnotes/es_ES/10-centos-sig-optools.png b/anaconda/rnotes/es_ES/10-centos-sig-optools.png new file mode 100644 index 0000000..bc4da9e Binary files /dev/null and b/anaconda/rnotes/es_ES/10-centos-sig-optools.png differ diff --git a/anaconda/rnotes/es_ES/11-centos-sig-paas.png b/anaconda/rnotes/es_ES/11-centos-sig-paas.png new file mode 100644 index 0000000..20b1ec0 Binary files /dev/null and b/anaconda/rnotes/es_ES/11-centos-sig-paas.png differ diff --git a/anaconda/rnotes/es_ES/12-centos-sig-promo.png b/anaconda/rnotes/es_ES/12-centos-sig-promo.png new file mode 100644 index 0000000..34c38e8 Binary files /dev/null and b/anaconda/rnotes/es_ES/12-centos-sig-promo.png differ diff --git a/anaconda/rnotes/es_ES/13-centos-sig-publicci.png b/anaconda/rnotes/es_ES/13-centos-sig-publicci.png new file mode 100644 index 0000000..8bf4c59 Binary files /dev/null and b/anaconda/rnotes/es_ES/13-centos-sig-publicci.png differ diff --git a/anaconda/rnotes/es_ES/14-centos-sig-sc.png b/anaconda/rnotes/es_ES/14-centos-sig-sc.png new file mode 100644 index 0000000..7ae1a12 Binary files /dev/null and b/anaconda/rnotes/es_ES/14-centos-sig-sc.png differ diff --git a/anaconda/rnotes/es_ES/15-centos-sig-storage.png b/anaconda/rnotes/es_ES/15-centos-sig-storage.png new file mode 100644 index 0000000..c10fca1 Binary files /dev/null and b/anaconda/rnotes/es_ES/15-centos-sig-storage.png differ diff --git a/anaconda/rnotes/es_ES/16-centos-sig-virt.png b/anaconda/rnotes/es_ES/16-centos-sig-virt.png new file mode 100644 index 0000000..96617c6 Binary files /dev/null and b/anaconda/rnotes/es_ES/16-centos-sig-virt.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/sidebar-bg.png b/anaconda/theme/sidebar-bg.png new file mode 100644 index 0000000..e76824e 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..86de7cb 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..e59b4a5 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..e1631ec --- /dev/null +++ b/backgrounds/10_org.gnome.desktop.background.default.gschema.override @@ -0,0 +1,2 @@ +[org.gnome.desktop.background] +picture-uri='file:///usr/share/backgrounds/rocky8/default-dark.xml' diff --git a/backgrounds/10_org.gnome.desktop.screensaver.default.gschema.override b/backgrounds/10_org.gnome.desktop.screensaver.default.gschema.override new file mode 100644 index 0000000..fc72cb1 --- /dev/null +++ b/backgrounds/10_org.gnome.desktop.screensaver.default.gschema.override @@ -0,0 +1,2 @@ +[org.gnome.desktop.screensaver] +picture-uri='file:///usr/share/backgrounds/rocky8/default-dark.xml' diff --git a/backgrounds/desktop-backgrounds-default.xml b/backgrounds/desktop-backgrounds-default.xml new file mode 100644 index 0000000..26b70d2 --- /dev/null +++ b/backgrounds/desktop-backgrounds-default.xml @@ -0,0 +1,28 @@ + + + + + Rocky Linux 8 Default Background - Dark + /usr/share/backgrounds/rocky8/default-dark.xml + zoom + Hayden Young + hbjy@rockylinux.org + Free Art License 1.3 + + + Rocky Linux 8 Default Background - Light + /usr/share/backgrounds/rocky8/default-light.xml + zoom + Hayden Young + hbjy@rockylinux.org + Free Art License 1.3 + + + Rocky Linux 8 Default Background - Primary + /usr/share/backgrounds/rocky8/default-primary.xml + zoom + Hayden Young + hbjy@rockylinux.org + Free Art License 1.3 + + diff --git a/backgrounds/rocky8/default-dark.xml b/backgrounds/rocky8/default-dark.xml new file mode 100644 index 0000000..ae27b4f --- /dev/null +++ b/backgrounds/rocky8/default-dark.xml @@ -0,0 +1,25 @@ + + + 2019 + 03 + 30 + 16 + 21 + 19 + + + +10000000000.0 + + + /usr/share/backgrounds/rocky8/default/tv-wide/dark.png + + /usr/share/backgrounds/rocky8/default/wide/dark.png + + /usr/share/backgrounds/rocky8/default/standard/dark.png + + /usr/share/backgrounds/rocky8/default/normalish/dark.png + + + + diff --git a/backgrounds/rocky8/default-light.xml b/backgrounds/rocky8/default-light.xml new file mode 100644 index 0000000..b26a127 --- /dev/null +++ b/backgrounds/rocky8/default-light.xml @@ -0,0 +1,25 @@ + + + 2019 + 03 + 30 + 16 + 21 + 19 + + + +10000000000.0 + + + /usr/share/backgrounds/rocky8/default/tv-wide/light.png + + /usr/share/backgrounds/rocky8/default/wide/light.png + + /usr/share/backgrounds/rocky8/default/standard/light.png + + /usr/share/backgrounds/rocky8/default/normalish/light.png + + + + diff --git a/backgrounds/rocky8/default-primary.xml b/backgrounds/rocky8/default-primary.xml new file mode 100644 index 0000000..6a26bad --- /dev/null +++ b/backgrounds/rocky8/default-primary.xml @@ -0,0 +1,25 @@ + + + 2019 + 03 + 30 + 16 + 21 + 19 + + + +10000000000.0 + + + /usr/share/backgrounds/rocky8/default/tv-wide/primary.png + + /usr/share/backgrounds/rocky8/default/wide/primary.png + + /usr/share/backgrounds/rocky8/default/standard/primary.png + + /usr/share/backgrounds/rocky8/default/normalish/primary.png + + + + diff --git a/backgrounds/rocky8/default/normalish/c8-hue-0.png b/backgrounds/rocky8/default/normalish/c8-hue-0.png new file mode 100644 index 0000000..9bff3ed Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-0.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-1.png b/backgrounds/rocky8/default/normalish/c8-hue-1.png new file mode 100644 index 0000000..55f40c6 Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-1.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-2.png b/backgrounds/rocky8/default/normalish/c8-hue-2.png new file mode 100644 index 0000000..c564fa7 Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-2.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-3.png b/backgrounds/rocky8/default/normalish/c8-hue-3.png new file mode 100644 index 0000000..b76cf4f Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-3.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-4.png b/backgrounds/rocky8/default/normalish/c8-hue-4.png new file mode 100644 index 0000000..f9a890f Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-4.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-5.png b/backgrounds/rocky8/default/normalish/c8-hue-5.png new file mode 100644 index 0000000..776e7cb Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-5.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-6.png b/backgrounds/rocky8/default/normalish/c8-hue-6.png new file mode 100644 index 0000000..9abd38c Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-6.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-7.png b/backgrounds/rocky8/default/normalish/c8-hue-7.png new file mode 100644 index 0000000..4147807 Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-7.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-8.png b/backgrounds/rocky8/default/normalish/c8-hue-8.png new file mode 100644 index 0000000..55e6825 Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-8.png differ diff --git a/backgrounds/rocky8/default/normalish/c8-hue-9.png b/backgrounds/rocky8/default/normalish/c8-hue-9.png new file mode 100644 index 0000000..2f5f453 Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8-hue-9.png differ diff --git a/backgrounds/rocky8/default/normalish/c8.png b/backgrounds/rocky8/default/normalish/c8.png new file mode 100644 index 0000000..c8a1aab Binary files /dev/null and b/backgrounds/rocky8/default/normalish/c8.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-0.png b/backgrounds/rocky8/default/standard/c8-hue-0.png new file mode 100644 index 0000000..ad7f287 Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-0.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-1.png b/backgrounds/rocky8/default/standard/c8-hue-1.png new file mode 100644 index 0000000..9a074cb Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-1.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-2.png b/backgrounds/rocky8/default/standard/c8-hue-2.png new file mode 100644 index 0000000..6a9bce7 Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-2.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-3.png b/backgrounds/rocky8/default/standard/c8-hue-3.png new file mode 100644 index 0000000..3be08fd Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-3.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-4.png b/backgrounds/rocky8/default/standard/c8-hue-4.png new file mode 100644 index 0000000..d9730ae Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-4.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-5.png b/backgrounds/rocky8/default/standard/c8-hue-5.png new file mode 100644 index 0000000..f7e33f9 Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-5.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-6.png b/backgrounds/rocky8/default/standard/c8-hue-6.png new file mode 100644 index 0000000..dcfce17 Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-6.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-7.png b/backgrounds/rocky8/default/standard/c8-hue-7.png new file mode 100644 index 0000000..04286ac Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-7.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-8.png b/backgrounds/rocky8/default/standard/c8-hue-8.png new file mode 100644 index 0000000..aa7112d Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-8.png differ diff --git a/backgrounds/rocky8/default/standard/c8-hue-9.png b/backgrounds/rocky8/default/standard/c8-hue-9.png new file mode 100644 index 0000000..bb2daf8 Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8-hue-9.png differ diff --git a/backgrounds/rocky8/default/standard/c8.png b/backgrounds/rocky8/default/standard/c8.png new file mode 100644 index 0000000..094af20 Binary files /dev/null and b/backgrounds/rocky8/default/standard/c8.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-0.png b/backgrounds/rocky8/default/tv-wide/c8-hue-0.png new file mode 100644 index 0000000..27eb42d Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-0.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-1.png b/backgrounds/rocky8/default/tv-wide/c8-hue-1.png new file mode 100644 index 0000000..1a668fe Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-1.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-2.png b/backgrounds/rocky8/default/tv-wide/c8-hue-2.png new file mode 100644 index 0000000..c815d69 Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-2.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-3.png b/backgrounds/rocky8/default/tv-wide/c8-hue-3.png new file mode 100644 index 0000000..fca31eb Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-3.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-4.png b/backgrounds/rocky8/default/tv-wide/c8-hue-4.png new file mode 100644 index 0000000..4e33261 Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-4.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-5.png b/backgrounds/rocky8/default/tv-wide/c8-hue-5.png new file mode 100644 index 0000000..34839a4 Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-5.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-6.png b/backgrounds/rocky8/default/tv-wide/c8-hue-6.png new file mode 100644 index 0000000..5d5f44e Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-6.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-7.png b/backgrounds/rocky8/default/tv-wide/c8-hue-7.png new file mode 100644 index 0000000..753a92b Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-7.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-8.png b/backgrounds/rocky8/default/tv-wide/c8-hue-8.png new file mode 100644 index 0000000..4446e72 Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-8.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8-hue-9.png b/backgrounds/rocky8/default/tv-wide/c8-hue-9.png new file mode 100644 index 0000000..6700a91 Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8-hue-9.png differ diff --git a/backgrounds/rocky8/default/tv-wide/c8.png b/backgrounds/rocky8/default/tv-wide/c8.png new file mode 100644 index 0000000..387f5f9 Binary files /dev/null and b/backgrounds/rocky8/default/tv-wide/c8.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-0.png b/backgrounds/rocky8/default/wide/c8-hue-0.png new file mode 100644 index 0000000..af8c26c Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-0.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-1.png b/backgrounds/rocky8/default/wide/c8-hue-1.png new file mode 100644 index 0000000..546d769 Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-1.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-2.png b/backgrounds/rocky8/default/wide/c8-hue-2.png new file mode 100644 index 0000000..9bbbfdb Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-2.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-3.png b/backgrounds/rocky8/default/wide/c8-hue-3.png new file mode 100644 index 0000000..bf2d848 Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-3.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-4.png b/backgrounds/rocky8/default/wide/c8-hue-4.png new file mode 100644 index 0000000..5f0dcc7 Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-4.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-5.png b/backgrounds/rocky8/default/wide/c8-hue-5.png new file mode 100644 index 0000000..31a5f2e Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-5.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-6.png b/backgrounds/rocky8/default/wide/c8-hue-6.png new file mode 100644 index 0000000..0058107 Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-6.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-7.png b/backgrounds/rocky8/default/wide/c8-hue-7.png new file mode 100644 index 0000000..ee210b7 Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-7.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-8.png b/backgrounds/rocky8/default/wide/c8-hue-8.png new file mode 100644 index 0000000..9be5e54 Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-8.png differ diff --git a/backgrounds/rocky8/default/wide/c8-hue-9.png b/backgrounds/rocky8/default/wide/c8-hue-9.png new file mode 100644 index 0000000..7b7bae8 Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8-hue-9.png differ diff --git a/backgrounds/rocky8/default/wide/c8.png b/backgrounds/rocky8/default/wide/c8.png new file mode 100644 index 0000000..0be57ec Binary files /dev/null and b/backgrounds/rocky8/default/wide/c8.png 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/fedora/fedora_logo.svg b/fedora/fedora_logo.svg new file mode 100644 index 0000000..5662d9c --- /dev/null +++ b/fedora/fedora_logo.svg @@ -0,0 +1,104 @@ + + + + \ No newline at end of file diff --git a/fedora/fedora_logo_darkbackground.svg b/fedora/fedora_logo_darkbackground.svg new file mode 100644 index 0000000..dd7130d --- /dev/null +++ b/fedora/fedora_logo_darkbackground.svg @@ -0,0 +1,104 @@ + + + + \ No newline at end of file diff --git a/firstboot/firstboot-left.png b/firstboot/firstboot-left.png new file mode 100644 index 0000000..661e6a1 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..9621802 Binary files /dev/null and b/firstboot/workstation.png differ diff --git a/icons/hicolor/16x16/apps/fedora-logo-icon.png b/icons/hicolor/16x16/apps/fedora-logo-icon.png new file mode 100644 index 0000000..6961083 Binary files /dev/null and b/icons/hicolor/16x16/apps/fedora-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..6961083 Binary files /dev/null and b/icons/hicolor/16x16/apps/system-logo-icon.png differ diff --git a/icons/hicolor/22x22/apps/fedora-logo-icon.png b/icons/hicolor/22x22/apps/fedora-logo-icon.png new file mode 100644 index 0000000..71cea08 Binary files /dev/null and b/icons/hicolor/22x22/apps/fedora-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..71cea08 Binary files /dev/null and b/icons/hicolor/22x22/apps/system-logo-icon.png differ diff --git a/icons/hicolor/24x24/apps/fedora-logo-icon.png b/icons/hicolor/24x24/apps/fedora-logo-icon.png new file mode 100644 index 0000000..46ef6ed Binary files /dev/null and b/icons/hicolor/24x24/apps/fedora-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..46ef6ed Binary files /dev/null and b/icons/hicolor/24x24/apps/system-logo-icon.png differ diff --git a/icons/hicolor/256x256/apps/fedora-logo-icon.png b/icons/hicolor/256x256/apps/fedora-logo-icon.png new file mode 100644 index 0000000..44664bd Binary files /dev/null and b/icons/hicolor/256x256/apps/fedora-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..44664bd Binary files /dev/null and b/icons/hicolor/256x256/apps/system-logo-icon.png differ diff --git a/icons/hicolor/32x32/apps/fedora-logo-icon.png b/icons/hicolor/32x32/apps/fedora-logo-icon.png new file mode 100644 index 0000000..a09205c Binary files /dev/null and b/icons/hicolor/32x32/apps/fedora-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..a09205c Binary files /dev/null and b/icons/hicolor/32x32/apps/system-logo-icon.png differ diff --git a/icons/hicolor/36x36/apps/fedora-logo-icon.png b/icons/hicolor/36x36/apps/fedora-logo-icon.png new file mode 100644 index 0000000..3a2c78a Binary files /dev/null and b/icons/hicolor/36x36/apps/fedora-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..3a2c78a 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..7817eed Binary files /dev/null and b/icons/hicolor/48x48/apps/anaconda.png differ diff --git a/icons/hicolor/48x48/apps/fedora-logo-icon.png b/icons/hicolor/48x48/apps/fedora-logo-icon.png new file mode 100644 index 0000000..d245172 Binary files /dev/null and b/icons/hicolor/48x48/apps/fedora-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..d245172 Binary files /dev/null and b/icons/hicolor/48x48/apps/system-logo-icon.png differ diff --git a/icons/hicolor/96x96/apps/fedora-logo-icon.png b/icons/hicolor/96x96/apps/fedora-logo-icon.png new file mode 100644 index 0000000..0afbec1 Binary files /dev/null and b/icons/hicolor/96x96/apps/fedora-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..0afbec1 Binary files /dev/null and b/icons/hicolor/96x96/apps/system-logo-icon.png differ diff --git a/icons/hicolor/scalable/apps/fedora-logo-icon.svg b/icons/hicolor/scalable/apps/fedora-logo-icon.svg new file mode 100644 index 0000000..634bf88 --- /dev/null +++ b/icons/hicolor/scalable/apps/fedora-logo-icon.svg @@ -0,0 +1,211 @@ + + + + + + + + image/svg+xml + + The CentOS Symbol + + + + + The CentOS Symbol + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/hicolor/scalable/apps/start-here.svg b/icons/hicolor/scalable/apps/start-here.svg new file mode 100644 index 0000000..634bf88 --- /dev/null +++ b/icons/hicolor/scalable/apps/start-here.svg @@ -0,0 +1,211 @@ + + + + + + + + image/svg+xml + + The CentOS Symbol + + + + + The CentOS Symbol + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/hicolor/scalable/apps/xfce4_xicon1.svg b/icons/hicolor/scalable/apps/xfce4_xicon1.svg new file mode 100644 index 0000000..634bf88 --- /dev/null +++ b/icons/hicolor/scalable/apps/xfce4_xicon1.svg @@ -0,0 +1,211 @@ + + + + + + + + image/svg+xml + + The CentOS Symbol + + + + + The CentOS Symbol + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ipa/header-logo.png b/ipa/header-logo.png new file mode 100644 index 0000000..fa66109 Binary files /dev/null and b/ipa/header-logo.png differ diff --git a/ipa/login-screen-background.jpg b/ipa/login-screen-background.jpg new file mode 100644 index 0000000..dcec29d Binary files /dev/null and b/ipa/login-screen-background.jpg differ diff --git a/ipa/login-screen-logo.png b/ipa/login-screen-logo.png new file mode 100644 index 0000000..8ffe2ae Binary files /dev/null and b/ipa/login-screen-logo.png differ diff --git a/ipa/product-name.png b/ipa/product-name.png new file mode 100644 index 0000000..ee804dc Binary files /dev/null and b/ipa/product-name.png differ diff --git a/pixmaps/fedora-gdm-logo.png b/pixmaps/fedora-gdm-logo.png new file mode 100644 index 0000000..fd9b1a8 Binary files /dev/null and b/pixmaps/fedora-gdm-logo.png differ diff --git a/pixmaps/fedora-logo-small.png b/pixmaps/fedora-logo-small.png new file mode 100644 index 0000000..60d8974 Binary files /dev/null and b/pixmaps/fedora-logo-small.png differ diff --git a/pixmaps/fedora-logo-sprite.png b/pixmaps/fedora-logo-sprite.png new file mode 100644 index 0000000..3555dbf Binary files /dev/null and b/pixmaps/fedora-logo-sprite.png differ diff --git a/pixmaps/fedora-logo-sprite.svg b/pixmaps/fedora-logo-sprite.svg new file mode 100644 index 0000000..dcd68f8 --- /dev/null +++ b/pixmaps/fedora-logo-sprite.svg @@ -0,0 +1,113 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/pixmaps/fedora-logo.png b/pixmaps/fedora-logo.png new file mode 100644 index 0000000..61cae78 Binary files /dev/null and b/pixmaps/fedora-logo.png differ diff --git a/pixmaps/poweredby.png b/pixmaps/poweredby.png new file mode 100644 index 0000000..3328139 Binary files /dev/null and b/pixmaps/poweredby.png differ diff --git a/pixmaps/system-logo-white.png b/pixmaps/system-logo-white.png new file mode 100644 index 0000000..0bc6f66 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..b158631 Binary files /dev/null and b/plymouth/charge/watermark.png differ