commit 2a34ead67e818d341d5628743f60a33a5e61b65f Author: Andrew Lukoshko Date: Mon Sep 2 15:11:25 2024 +0000 Initial import of almalinux-logos-100.1-1.el10 diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..2be8c6b --- /dev/null +++ b/COPYING @@ -0,0 +1,5 @@ +AlmaLinux and AlmaLinux logo, either separately or in combination, are hereinafter referred to as "Trademarks" and are trademarks of AlmaLinux OS Foundation, registered in the United States and other countries. + +The almalinux-logos package ("Package") contains images that are or include the AlmaLinux Trademarks. 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 ALMALINUX OS FOUNDATION 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/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..78d5180 --- /dev/null +++ b/anaconda/Makefile @@ -0,0 +1,27 @@ +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 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/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/redhat.css b/anaconda/theme/redhat.css new file mode 100644 index 0000000..fc85ef6 --- /dev/null +++ b/anaconda/theme/redhat.css @@ -0,0 +1,41 @@ +/* Anaconda gtk style overrides for RHEL */ + +/* vendor-specific colors */ +@define-color almalinux #0b2335; + +/* logo and sidebar classes */ + +/* The sidebar consists of three parts: a background, a logo, and a product logo, + * rendered in that order. The product logo is empty by default and is intended + * to be overridden by a stylesheet in product.img. + */ +.logo-sidebar { + background-image: url('/usr/share/anaconda/pixmaps/sidebar-bg.png'); + background-color: @almalinux; + background-repeat: no-repeat; + background-size: cover; + background-position: top left; +} + +/* Add a logo to the sidebar */ +.logo { + background-image: url('/usr/share/anaconda/pixmaps/sidebar-logo.png'); + background-position: 50% 20px; + background-repeat: no-repeat; + background-color: transparent; +} + +/* This is a placeholder to be filled by a product-specific logo. */ +.product-logo { + background-image: none; + background-color: transparent; +} + +AnacondaSpokeWindow #nav-box { + background-color: @almalinux; + background-image: url('/usr/share/anaconda/pixmaps/topbar-bg.png'); + background-repeat: no-repeat; + background-size: cover; + background-position: top left; + color: white; +} diff --git a/anaconda/theme/sidebar-bg.png b/anaconda/theme/sidebar-bg.png new file mode 100644 index 0000000..346d541 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..e02bc50 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..34adf79 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..cce3e7b --- /dev/null +++ b/backgrounds/10_org.gnome.desktop.background.default.gschema.override @@ -0,0 +1,4 @@ +[org.gnome.desktop.background] +picture-uri='file:///usr/share/backgrounds/Alma-mountains-white.xml' +picture-options='scaled' + 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..0e05c8b --- /dev/null +++ b/backgrounds/10_org.gnome.desktop.screensaver.default.gschema.override @@ -0,0 +1,4 @@ +[org.gnome.desktop.screensaver] +picture-uri='file:///usr/share/backgrounds/Alma-mountains-dark.xml' +picture-options='scaled' + diff --git a/backgrounds/Alma-abstract-dark-1800x1440.jpg b/backgrounds/Alma-abstract-dark-1800x1440.jpg new file mode 100644 index 0000000..cf968d0 Binary files /dev/null and b/backgrounds/Alma-abstract-dark-1800x1440.jpg differ diff --git a/backgrounds/Alma-abstract-dark-2048x1536.jpg b/backgrounds/Alma-abstract-dark-2048x1536.jpg new file mode 100644 index 0000000..02c37b2 Binary files /dev/null and b/backgrounds/Alma-abstract-dark-2048x1536.jpg differ diff --git a/backgrounds/Alma-abstract-dark-2560x1080.jpg b/backgrounds/Alma-abstract-dark-2560x1080.jpg new file mode 100644 index 0000000..04c2485 Binary files /dev/null and b/backgrounds/Alma-abstract-dark-2560x1080.jpg differ diff --git a/backgrounds/Alma-abstract-dark-2560x1440.jpg b/backgrounds/Alma-abstract-dark-2560x1440.jpg new file mode 100644 index 0000000..a9349e8 Binary files /dev/null and b/backgrounds/Alma-abstract-dark-2560x1440.jpg differ diff --git a/backgrounds/Alma-abstract-dark-2560x1600.jpg b/backgrounds/Alma-abstract-dark-2560x1600.jpg new file mode 100644 index 0000000..8b65987 Binary files /dev/null and b/backgrounds/Alma-abstract-dark-2560x1600.jpg differ diff --git a/backgrounds/Alma-abstract-dark-3440x1440.jpg b/backgrounds/Alma-abstract-dark-3440x1440.jpg new file mode 100644 index 0000000..8e77d99 Binary files /dev/null and b/backgrounds/Alma-abstract-dark-3440x1440.jpg differ diff --git a/backgrounds/Alma-abstract-dark.xml b/backgrounds/Alma-abstract-dark.xml new file mode 100644 index 0000000..28e4185 --- /dev/null +++ b/backgrounds/Alma-abstract-dark.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-abstract-dark-1800x1440.jpg + /usr/share/backgrounds/Alma-abstract-dark-2048x1536.jpg + /usr/share/backgrounds/Alma-abstract-dark-2560x1440.jpg + /usr/share/backgrounds/Alma-abstract-dark-2560x1600.jpg + /usr/share/backgrounds/Alma-abstract-dark-2560x1080.jpg + /usr/share/backgrounds/Alma-abstract-dark-3440x1440.jpg + + + diff --git a/backgrounds/Alma-abstract-light-1800x1440.jpg b/backgrounds/Alma-abstract-light-1800x1440.jpg new file mode 100644 index 0000000..b65d7b5 Binary files /dev/null and b/backgrounds/Alma-abstract-light-1800x1440.jpg differ diff --git a/backgrounds/Alma-abstract-light-2048x1536.jpg b/backgrounds/Alma-abstract-light-2048x1536.jpg new file mode 100644 index 0000000..ab1ed97 Binary files /dev/null and b/backgrounds/Alma-abstract-light-2048x1536.jpg differ diff --git a/backgrounds/Alma-abstract-light-2560x1080.jpg b/backgrounds/Alma-abstract-light-2560x1080.jpg new file mode 100644 index 0000000..b447329 Binary files /dev/null and b/backgrounds/Alma-abstract-light-2560x1080.jpg differ diff --git a/backgrounds/Alma-abstract-light-2560x1440.jpg b/backgrounds/Alma-abstract-light-2560x1440.jpg new file mode 100644 index 0000000..4a1fa1d Binary files /dev/null and b/backgrounds/Alma-abstract-light-2560x1440.jpg differ diff --git a/backgrounds/Alma-abstract-light-2560x1600.jpg b/backgrounds/Alma-abstract-light-2560x1600.jpg new file mode 100644 index 0000000..d5ae1f2 Binary files /dev/null and b/backgrounds/Alma-abstract-light-2560x1600.jpg differ diff --git a/backgrounds/Alma-abstract-light-3440x1440.jpg b/backgrounds/Alma-abstract-light-3440x1440.jpg new file mode 100644 index 0000000..e285cfe Binary files /dev/null and b/backgrounds/Alma-abstract-light-3440x1440.jpg differ diff --git a/backgrounds/Alma-abstract-light.xml b/backgrounds/Alma-abstract-light.xml new file mode 100644 index 0000000..f55afff --- /dev/null +++ b/backgrounds/Alma-abstract-light.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-abstract-light-1800x1440.jpg + /usr/share/backgrounds/Alma-abstract-light-2048x1536.jpg + /usr/share/backgrounds/Alma-abstract-light-2560x1440.jpg + /usr/share/backgrounds/Alma-abstract-light-2560x1600.jpg + /usr/share/backgrounds/Alma-abstract-light-2560x1080.jpg + /usr/share/backgrounds/Alma-abstract-light-3440x1440.jpg + + + diff --git a/backgrounds/Alma-dark-1800x1440.jpg b/backgrounds/Alma-dark-1800x1440.jpg new file mode 100644 index 0000000..210b511 Binary files /dev/null and b/backgrounds/Alma-dark-1800x1440.jpg differ diff --git a/backgrounds/Alma-dark-2048x1536.jpg b/backgrounds/Alma-dark-2048x1536.jpg new file mode 100644 index 0000000..defeb85 Binary files /dev/null and b/backgrounds/Alma-dark-2048x1536.jpg differ diff --git a/backgrounds/Alma-dark-2560x1080.jpg b/backgrounds/Alma-dark-2560x1080.jpg new file mode 100644 index 0000000..c2a51aa Binary files /dev/null and b/backgrounds/Alma-dark-2560x1080.jpg differ diff --git a/backgrounds/Alma-dark-2560x1440.jpg b/backgrounds/Alma-dark-2560x1440.jpg new file mode 100644 index 0000000..70738b6 Binary files /dev/null and b/backgrounds/Alma-dark-2560x1440.jpg differ diff --git a/backgrounds/Alma-dark-2560x1600.jpg b/backgrounds/Alma-dark-2560x1600.jpg new file mode 100644 index 0000000..866864b Binary files /dev/null and b/backgrounds/Alma-dark-2560x1600.jpg differ diff --git a/backgrounds/Alma-dark-3440x1440.jpg b/backgrounds/Alma-dark-3440x1440.jpg new file mode 100644 index 0000000..0a16983 Binary files /dev/null and b/backgrounds/Alma-dark-3440x1440.jpg differ diff --git a/backgrounds/Alma-dark.xml b/backgrounds/Alma-dark.xml new file mode 100644 index 0000000..558801c --- /dev/null +++ b/backgrounds/Alma-dark.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-dark-1800x1440.jpg + /usr/share/backgrounds/Alma-dark-2048x1536.jpg + /usr/share/backgrounds/Alma-dark-2560x1440.jpg + /usr/share/backgrounds/Alma-dark-2560x1600.jpg + /usr/share/backgrounds/Alma-dark-2560x1080.jpg + /usr/share/backgrounds/Alma-dark-3440x1440.jpg + + + diff --git a/backgrounds/Alma-light-1800x1440.jpg b/backgrounds/Alma-light-1800x1440.jpg new file mode 100644 index 0000000..166a41a Binary files /dev/null and b/backgrounds/Alma-light-1800x1440.jpg differ diff --git a/backgrounds/Alma-light-2048x1536.jpg b/backgrounds/Alma-light-2048x1536.jpg new file mode 100644 index 0000000..c7e69e5 Binary files /dev/null and b/backgrounds/Alma-light-2048x1536.jpg differ diff --git a/backgrounds/Alma-light-2560x1080.jpg b/backgrounds/Alma-light-2560x1080.jpg new file mode 100644 index 0000000..0a8397b Binary files /dev/null and b/backgrounds/Alma-light-2560x1080.jpg differ diff --git a/backgrounds/Alma-light-2560x1440.jpg b/backgrounds/Alma-light-2560x1440.jpg new file mode 100644 index 0000000..2144948 Binary files /dev/null and b/backgrounds/Alma-light-2560x1440.jpg differ diff --git a/backgrounds/Alma-light-2560x1600.jpg b/backgrounds/Alma-light-2560x1600.jpg new file mode 100644 index 0000000..13c9663 Binary files /dev/null and b/backgrounds/Alma-light-2560x1600.jpg differ diff --git a/backgrounds/Alma-light-3440x1440.jpg b/backgrounds/Alma-light-3440x1440.jpg new file mode 100644 index 0000000..2436c26 Binary files /dev/null and b/backgrounds/Alma-light-3440x1440.jpg differ diff --git a/backgrounds/Alma-light.xml b/backgrounds/Alma-light.xml new file mode 100644 index 0000000..9647fc5 --- /dev/null +++ b/backgrounds/Alma-light.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-light-1800x1440.jpg + /usr/share/backgrounds/Alma-light-2048x1536.jpg + /usr/share/backgrounds/Alma-light-2560x1440.jpg + /usr/share/backgrounds/Alma-light-2560x1600.jpg + /usr/share/backgrounds/Alma-light-2560x1080.jpg + /usr/share/backgrounds/Alma-light-3440x1440.jpg + + + diff --git a/backgrounds/Alma-mountains-dark-1800x1440.jpg b/backgrounds/Alma-mountains-dark-1800x1440.jpg new file mode 100644 index 0000000..c20d1ec Binary files /dev/null and b/backgrounds/Alma-mountains-dark-1800x1440.jpg differ diff --git a/backgrounds/Alma-mountains-dark-2048x1536.jpg b/backgrounds/Alma-mountains-dark-2048x1536.jpg new file mode 100644 index 0000000..10d5203 Binary files /dev/null and b/backgrounds/Alma-mountains-dark-2048x1536.jpg differ diff --git a/backgrounds/Alma-mountains-dark-2560x1080.jpg b/backgrounds/Alma-mountains-dark-2560x1080.jpg new file mode 100644 index 0000000..3921cbe Binary files /dev/null and b/backgrounds/Alma-mountains-dark-2560x1080.jpg differ diff --git a/backgrounds/Alma-mountains-dark-2560x1440.jpg b/backgrounds/Alma-mountains-dark-2560x1440.jpg new file mode 100644 index 0000000..2a32759 Binary files /dev/null and b/backgrounds/Alma-mountains-dark-2560x1440.jpg differ diff --git a/backgrounds/Alma-mountains-dark-2560x1600.jpg b/backgrounds/Alma-mountains-dark-2560x1600.jpg new file mode 100644 index 0000000..2f220f1 Binary files /dev/null and b/backgrounds/Alma-mountains-dark-2560x1600.jpg differ diff --git a/backgrounds/Alma-mountains-dark-3440x1440.jpg b/backgrounds/Alma-mountains-dark-3440x1440.jpg new file mode 100644 index 0000000..7105677 Binary files /dev/null and b/backgrounds/Alma-mountains-dark-3440x1440.jpg differ diff --git a/backgrounds/Alma-mountains-dark.xml b/backgrounds/Alma-mountains-dark.xml new file mode 100644 index 0000000..dac50f6 --- /dev/null +++ b/backgrounds/Alma-mountains-dark.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-mountains-dark-1800x1440.jpg + /usr/share/backgrounds/Alma-mountains-dark-2048x1536.jpg + /usr/share/backgrounds/Alma-mountains-dark-2560x1440.jpg + /usr/share/backgrounds/Alma-mountains-dark-2560x1600.jpg + /usr/share/backgrounds/Alma-mountains-dark-2560x1080.jpg + /usr/share/backgrounds/Alma-mountains-dark-3440x1440.jpg + + + diff --git a/backgrounds/Alma-mountains-white-1800x1440.jpg b/backgrounds/Alma-mountains-white-1800x1440.jpg new file mode 100644 index 0000000..8cf63e7 Binary files /dev/null and b/backgrounds/Alma-mountains-white-1800x1440.jpg differ diff --git a/backgrounds/Alma-mountains-white-2048x1536.jpg b/backgrounds/Alma-mountains-white-2048x1536.jpg new file mode 100644 index 0000000..3c6ae11 Binary files /dev/null and b/backgrounds/Alma-mountains-white-2048x1536.jpg differ diff --git a/backgrounds/Alma-mountains-white-2560x1080.jpg b/backgrounds/Alma-mountains-white-2560x1080.jpg new file mode 100644 index 0000000..870940e Binary files /dev/null and b/backgrounds/Alma-mountains-white-2560x1080.jpg differ diff --git a/backgrounds/Alma-mountains-white-2560x1440.jpg b/backgrounds/Alma-mountains-white-2560x1440.jpg new file mode 100644 index 0000000..dd6d854 Binary files /dev/null and b/backgrounds/Alma-mountains-white-2560x1440.jpg differ diff --git a/backgrounds/Alma-mountains-white-2560x1600.jpg b/backgrounds/Alma-mountains-white-2560x1600.jpg new file mode 100644 index 0000000..05d2f73 Binary files /dev/null and b/backgrounds/Alma-mountains-white-2560x1600.jpg differ diff --git a/backgrounds/Alma-mountains-white-3440x1440.jpg b/backgrounds/Alma-mountains-white-3440x1440.jpg new file mode 100644 index 0000000..0a13dff Binary files /dev/null and b/backgrounds/Alma-mountains-white-3440x1440.jpg differ diff --git a/backgrounds/Alma-mountains-white.xml b/backgrounds/Alma-mountains-white.xml new file mode 100644 index 0000000..fe38c96 --- /dev/null +++ b/backgrounds/Alma-mountains-white.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-mountains-white-1800x1440.jpg + /usr/share/backgrounds/Alma-mountains-white-2048x1536.jpg + /usr/share/backgrounds/Alma-mountains-white-2560x1440.jpg + /usr/share/backgrounds/Alma-mountains-white-2560x1600.jpg + /usr/share/backgrounds/Alma-mountains-white-2560x1080.jpg + /usr/share/backgrounds/Alma-mountains-white-3440x1440.jpg + + + diff --git a/backgrounds/Alma-waves-dark-1800x1440.jpg b/backgrounds/Alma-waves-dark-1800x1440.jpg new file mode 100644 index 0000000..de2f5d4 Binary files /dev/null and b/backgrounds/Alma-waves-dark-1800x1440.jpg differ diff --git a/backgrounds/Alma-waves-dark-2048x1536.jpg b/backgrounds/Alma-waves-dark-2048x1536.jpg new file mode 100644 index 0000000..d9ea477 Binary files /dev/null and b/backgrounds/Alma-waves-dark-2048x1536.jpg differ diff --git a/backgrounds/Alma-waves-dark-2560x1080.jpg b/backgrounds/Alma-waves-dark-2560x1080.jpg new file mode 100644 index 0000000..8cde43e Binary files /dev/null and b/backgrounds/Alma-waves-dark-2560x1080.jpg differ diff --git a/backgrounds/Alma-waves-dark-2560x1440.jpg b/backgrounds/Alma-waves-dark-2560x1440.jpg new file mode 100644 index 0000000..4cd9f87 Binary files /dev/null and b/backgrounds/Alma-waves-dark-2560x1440.jpg differ diff --git a/backgrounds/Alma-waves-dark-2560x1600.jpg b/backgrounds/Alma-waves-dark-2560x1600.jpg new file mode 100644 index 0000000..15ec6f6 Binary files /dev/null and b/backgrounds/Alma-waves-dark-2560x1600.jpg differ diff --git a/backgrounds/Alma-waves-dark-3440x1440.jpg b/backgrounds/Alma-waves-dark-3440x1440.jpg new file mode 100644 index 0000000..5872797 Binary files /dev/null and b/backgrounds/Alma-waves-dark-3440x1440.jpg differ diff --git a/backgrounds/Alma-waves-dark.xml b/backgrounds/Alma-waves-dark.xml new file mode 100644 index 0000000..fea2dad --- /dev/null +++ b/backgrounds/Alma-waves-dark.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-waves-dark-1800x1440.jpg + /usr/share/backgrounds/Alma-waves-dark-2048x1536.jpg + /usr/share/backgrounds/Alma-waves-dark-2560x1440.jpg + /usr/share/backgrounds/Alma-waves-dark-2560x1600.jpg + /usr/share/backgrounds/Alma-waves-dark-2560x1080.jpg + /usr/share/backgrounds/Alma-waves-dark-3440x1440.jpg + + + diff --git a/backgrounds/Alma-waves-light-1800x1440.jpg b/backgrounds/Alma-waves-light-1800x1440.jpg new file mode 100644 index 0000000..913956a Binary files /dev/null and b/backgrounds/Alma-waves-light-1800x1440.jpg differ diff --git a/backgrounds/Alma-waves-light-2048x1536.jpg b/backgrounds/Alma-waves-light-2048x1536.jpg new file mode 100644 index 0000000..a411932 Binary files /dev/null and b/backgrounds/Alma-waves-light-2048x1536.jpg differ diff --git a/backgrounds/Alma-waves-light-2560x1080.jpg b/backgrounds/Alma-waves-light-2560x1080.jpg new file mode 100644 index 0000000..db8ff9f Binary files /dev/null and b/backgrounds/Alma-waves-light-2560x1080.jpg differ diff --git a/backgrounds/Alma-waves-light-2560x1440.jpg b/backgrounds/Alma-waves-light-2560x1440.jpg new file mode 100644 index 0000000..282f309 Binary files /dev/null and b/backgrounds/Alma-waves-light-2560x1440.jpg differ diff --git a/backgrounds/Alma-waves-light-2560x1600.jpg b/backgrounds/Alma-waves-light-2560x1600.jpg new file mode 100644 index 0000000..a3f3920 Binary files /dev/null and b/backgrounds/Alma-waves-light-2560x1600.jpg differ diff --git a/backgrounds/Alma-waves-light-3440x1440.jpg b/backgrounds/Alma-waves-light-3440x1440.jpg new file mode 100644 index 0000000..852b18b Binary files /dev/null and b/backgrounds/Alma-waves-light-3440x1440.jpg differ diff --git a/backgrounds/Alma-waves-light.xml b/backgrounds/Alma-waves-light.xml new file mode 100644 index 0000000..8c21bf4 --- /dev/null +++ b/backgrounds/Alma-waves-light.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-waves-light-1800x1440.jpg + /usr/share/backgrounds/Alma-waves-light-2048x1536.jpg + /usr/share/backgrounds/Alma-waves-light-2560x1440.jpg + /usr/share/backgrounds/Alma-waves-light-2560x1600.jpg + /usr/share/backgrounds/Alma-waves-light-2560x1080.jpg + /usr/share/backgrounds/Alma-waves-light-3440x1440.jpg + + + diff --git a/backgrounds/Alma-waves-sunset-1800x1440.jpg b/backgrounds/Alma-waves-sunset-1800x1440.jpg new file mode 100644 index 0000000..2993426 Binary files /dev/null and b/backgrounds/Alma-waves-sunset-1800x1440.jpg differ diff --git a/backgrounds/Alma-waves-sunset-2048x1536.jpg b/backgrounds/Alma-waves-sunset-2048x1536.jpg new file mode 100644 index 0000000..ad739d4 Binary files /dev/null and b/backgrounds/Alma-waves-sunset-2048x1536.jpg differ diff --git a/backgrounds/Alma-waves-sunset-2560x1080.jpg b/backgrounds/Alma-waves-sunset-2560x1080.jpg new file mode 100644 index 0000000..e3a7f81 Binary files /dev/null and b/backgrounds/Alma-waves-sunset-2560x1080.jpg differ diff --git a/backgrounds/Alma-waves-sunset-2560x1440.jpg b/backgrounds/Alma-waves-sunset-2560x1440.jpg new file mode 100644 index 0000000..838142d Binary files /dev/null and b/backgrounds/Alma-waves-sunset-2560x1440.jpg differ diff --git a/backgrounds/Alma-waves-sunset-2560x1600.jpg b/backgrounds/Alma-waves-sunset-2560x1600.jpg new file mode 100644 index 0000000..c7e0538 Binary files /dev/null and b/backgrounds/Alma-waves-sunset-2560x1600.jpg differ diff --git a/backgrounds/Alma-waves-sunset-3440x1440.jpg b/backgrounds/Alma-waves-sunset-3440x1440.jpg new file mode 100644 index 0000000..0e45398 Binary files /dev/null and b/backgrounds/Alma-waves-sunset-3440x1440.jpg differ diff --git a/backgrounds/Alma-waves-sunset.xml b/backgrounds/Alma-waves-sunset.xml new file mode 100644 index 0000000..6a55431 --- /dev/null +++ b/backgrounds/Alma-waves-sunset.xml @@ -0,0 +1,21 @@ + + + 2012 + 06 + 4 + 7 + 00 + 00 + + +10000000000.0 + + /usr/share/backgrounds/Alma-waves-sunset-1800x1440.jpg + /usr/share/backgrounds/Alma-waves-sunset-2048x1536.jpg + /usr/share/backgrounds/Alma-waves-sunset-2560x1440.jpg + /usr/share/backgrounds/Alma-waves-sunset-2560x1600.jpg + /usr/share/backgrounds/Alma-waves-sunset-2560x1080.jpg + /usr/share/backgrounds/Alma-waves-sunset-3440x1440.jpg + + + diff --git a/backgrounds/desktop-backgrounds-default.xml b/backgrounds/desktop-backgrounds-default.xml new file mode 100644 index 0000000..45297ae --- /dev/null +++ b/backgrounds/desktop-backgrounds-default.xml @@ -0,0 +1,57 @@ + + + + + Mountains Light + /usr/share/backgrounds/Alma-mountains-white.xml + zoom + + + + Mountains Dark + /usr/share/backgrounds/Alma-mountains-dark.xml + zoom + + + + Waves Light + /usr/share/backgrounds/Alma-waves-light.xml + zoom + + + + Waves Dark + /usr/share/backgrounds/Alma-waves-dark.xml + zoom + + + + Waves Sunset + /usr/share/backgrounds/Alma-waves-sunset.xml + zoom + + + + Abstract Dark + /usr/share/backgrounds/Alma-abstract-dark.xml + zoom + + + + Abstract Light + /usr/share/backgrounds/Alma-abstract-light.xml + zoom + + + + Dark + /usr/share/backgrounds/Alma-dark.xml + zoom + + + + Light + /usr/share/backgrounds/Alma-light.xml + zoom + + 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..be4ad8f --- /dev/null +++ b/fedora/fedora_logo.svg @@ -0,0 +1,67 @@ + + + + +Монтажная область 1 + + + + + + + + + + + + + + + + + + + + + + diff --git a/fedora/fedora_logo_darkbackground.svg b/fedora/fedora_logo_darkbackground.svg new file mode 100644 index 0000000..7509ad0 --- /dev/null +++ b/fedora/fedora_logo_darkbackground.svg @@ -0,0 +1,66 @@ + + + + +Монтажная область 1 + + + + + + + + + + + + + + + + + + + + + + diff --git a/fedora/fedora_logo_lightbackground.svg b/fedora/fedora_logo_lightbackground.svg new file mode 100644 index 0000000..be4ad8f --- /dev/null +++ b/fedora/fedora_logo_lightbackground.svg @@ -0,0 +1,67 @@ + + + + +Монтажная область 1 + + + + + + + + + + + + + + + + + + + + + + diff --git a/firstboot/firstboot-left.png b/firstboot/firstboot-left.png new file mode 100644 index 0000000..346d541 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..3a5e89a 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..3a5e89a 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..73b17a7 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..73b17a7 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..8c5ebc3 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..8c5ebc3 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..a8fa386 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..a8fa386 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..c86a46e 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..c86a46e 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..05e7677 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..05e7677 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..a917026 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..2e76d7c 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..2e76d7c 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..f8760d0 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..f8760d0 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..0f60d86 --- /dev/null +++ b/icons/hicolor/scalable/apps/fedora-logo-icon.svg @@ -0,0 +1,45 @@ + + + + +Монтажная область 1 + + + + + + + + + + + + + diff --git a/icons/hicolor/scalable/apps/org.fedoraproject.AnacondaInstaller.svg b/icons/hicolor/scalable/apps/org.fedoraproject.AnacondaInstaller.svg new file mode 100644 index 0000000..7861f61 --- /dev/null +++ b/icons/hicolor/scalable/apps/org.fedoraproject.AnacondaInstaller.svg @@ -0,0 +1,202 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/hicolor/scalable/apps/start-here.svg b/icons/hicolor/scalable/apps/start-here.svg new file mode 100644 index 0000000..db502e0 --- /dev/null +++ b/icons/hicolor/scalable/apps/start-here.svg @@ -0,0 +1,42 @@ + + + + +Монтажная область 1 + + + + + + + + + + + + + diff --git a/icons/hicolor/scalable/apps/xfce4_xicon1.svg b/icons/hicolor/scalable/apps/xfce4_xicon1.svg new file mode 100644 index 0000000..db502e0 --- /dev/null +++ b/icons/hicolor/scalable/apps/xfce4_xicon1.svg @@ -0,0 +1,42 @@ + + + + +Монтажная область 1 + + + + + + + + + + + + + diff --git a/icons/hicolor/symbolic/apps/org.fedoraproject.AnacondaInstaller-symbolic.svg b/icons/hicolor/symbolic/apps/org.fedoraproject.AnacondaInstaller-symbolic.svg new file mode 100644 index 0000000..1baa8ab --- /dev/null +++ b/icons/hicolor/symbolic/apps/org.fedoraproject.AnacondaInstaller-symbolic.svg @@ -0,0 +1,152 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ipa/header-logo.png b/ipa/header-logo.png new file mode 100644 index 0000000..4b4825c 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..691bbbf 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..e52c746 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..e3a8a00 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..146bcbe 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..e66f7fe 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..24942ec 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..3d0fe68 --- /dev/null +++ b/pixmaps/fedora-logo-sprite.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pixmaps/fedora-logo.png b/pixmaps/fedora-logo.png new file mode 100644 index 0000000..d41de82 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..27c0cd3 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..b956ff0 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..da71491 Binary files /dev/null and b/plymouth/charge/watermark.png differ diff --git a/testpage/index.html b/testpage/index.html new file mode 100644 index 0000000..a6eda5d --- /dev/null +++ b/testpage/index.html @@ -0,0 +1,147 @@ + + + + + Test Page for the HTTP Server on AlmaLinux + + + + + +

AlmaLinux Test Page

+ +
+
+

This page is used to test the proper operation of the HTTP server after it has been installed. If you can read this page, it means that the HTTP server installed at this site is working properly.

+
+
+ +
+
+

If you are a member of the general public:

+ +

The fact that you are seeing this page indicates that the website you just visited is either experiencing problems, or is undergoing routine maintenance.

+ +

If you would like to let the administrators of this website know that you've seen this page instead of the page you expected, you should send them e-mail. In general, mail sent to the name "webmaster" and directed to the website's domain should reach the appropriate person.

+ +

For example, if you experienced problems while visiting www.example.com, you should send e-mail to "webmaster@example.com".

+ +

For information on AlmaLinux, please visit the AlmaLinux website.

+
+
+ +
+

If you are the website administrator:

+ +

You may now add content to the webroot directory. Note + that until you do so, people visiting your website will see + this page, and not your content.

+ +

For systems using the Apache HTTP Server: + You may now add content to the directory /var/www/html/. Note that until you do so, people visiting your website will see this page, and not your content. To prevent this page from ever being used, follow the instructions in the file /etc/httpd/conf.d/welcome.conf.

+ +

For systems using NGINX: + You should now put your content in a location of your + choice and edit the root configuration directive + in the nginx configuration file + /etc/nginx/nginx.conf.

+ +
+ [ Powered by AlmaLinux ] + [ Powered by AlmaLinux ] +
+
+
+
+ + +