@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
PowerEL, PowerEL Linux, and the PowerEL logo, either separately or in combination, are hereinafter referred to as "PowerEL Trademarks" and are trademarks of The PowerEL Project, registered in the Belgium and other countries. |
||||
|
||||
The powerel-logos package ("Package") contains images that are or include the PowerEL Trademarks and PowerEL trade dress. You are granted the right to use the Package only during the normal operation of software programs that call upon the Package. No other copyright or trademark license is granted herein. |
||||
|
||||
NO WARRANTY. THIS PACKAGE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND INTELLECTUAL PROPERTY NONINFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE PowerEL PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
Artwork in this package is derived from several sources. |
||||
|
||||
Backgrounds: |
||||
- Toshaan Bharvani <toshaan@vantosh.com> |
||||
|
||||
Anaconda: |
||||
- Toshaan Bharvani <toshaan@vantosh.com> |
||||
|
||||
|
||||
Assorted icons and images included in the PowerEL artwork are borrowed from the gnome developer's gnome-icon-theme. |
||||
|
||||
Fonts used are Exo, and Source Sans Pro. These are from Google's open fonts. |
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
NAME = powerel-logos |
||||
XML = backgrounds/desktop-backgrounds-powerel.xml |
||||
|
||||
all: update-po bootloader/powerel.icns |
||||
|
||||
bootloader/powerel.icns: pixmaps/powerel-logo-sprite.svg |
||||
convert -background none -resize 128x128 pixmaps/powerel-logo-sprite.svg pixmaps/powerel-logo-sprite.png |
||||
png2icns bootloader/powerel.icns pixmaps/powerel-logo-sprite.png |
||||
|
||||
update-po: |
||||
@echo "updating pot files..." |
||||
sed -e "s/_name/name/g" $(XML).in > $(XML) |
||||
# FIXME need to handle translations |
||||
# |
||||
#( cd po && intltool-update --gettext-package=$(NAME) --pot ) |
||||
#@echo "merging existing po files to xml..." |
||||
#intltool-merge -x po $(XML).in $(XML) |
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
ANACONDADATADIR = /usr/share/anaconda |
||||
ANACONDABOOTDIR = $(ANACONDADATADIR)/boot |
||||
|
||||
all: |
||||
@echo "Nothing to do." |
||||
|
||||
#splash.lss: syslinux-splash.png |
||||
# ./splashtolss.sh syslinux-splash.png splash.lss |
||||
|
||||
install: |
||||
@if [ "$(DESTDIR)" = "" ]; then \ |
||||
echo " "; \ |
||||
echo "ERROR: A destdir is required"; \ |
||||
exit 1; \ |
||||
fi |
||||
|
||||
mkdir -p $(DESTDIR)/$(ANACONDADATADIR) |
||||
mkdir -p $(DESTDIR)/$(ANACONDABOOTDIR) |
||||
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/en |
||||
|
||||
install -m 644 splash.lss $(DESTDIR)/$(ANACONDABOOTDIR) |
||||
install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDABOOTDIR)/syslinux-splash.png |
||||
# install -m 755 splashtolss.sh $(DESTDIR)/$(ANACONDADATADIR) |
||||
install -m 644 -t $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/en rnotes/en/* |
||||
install -m 644 -t $(DESTDIR)/$(ANACONDADATADIR)/pixmaps theme/* |
||||
|
||||
clean: |
||||
rm -f splash.lss |
@ -0,0 +1,19 @@
@@ -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. |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 7.3 KiB |
After Width: | Height: | Size: 8.5 KiB |
After Width: | Height: | Size: 7.0 KiB |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh |
||||
|
||||
usage() { |
||||
echo "Usage: $0 <source> <output>" |
||||
exit 1 |
||||
} |
||||
|
||||
if [ -z "$1" -o -z "$2" ]; then |
||||
usage |
||||
fi |
||||
|
||||
pngtopnm $1 | ppmtolss16 \#cdcfd5=7 \#ffffff=1 \#000000=0 \#c90000=15 > $2 |
After Width: | Height: | Size: 186 B |
After Width: | Height: | Size: 98 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 39 KiB |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
[org.gnome.desktop.background] |
||||
picture-uri='file:///usr/share/backgrounds/default.xml' |
||||
|
After Width: | Height: | Size: 939 KiB |
After Width: | Height: | Size: 677 KiB |
After Width: | Height: | Size: 3.1 MiB |
@ -0,0 +1,51 @@
@@ -0,0 +1,51 @@
|
||||
<background> |
||||
<starttime> |
||||
<year>2012</year> |
||||
<month>06</month> |
||||
<day>4</day> |
||||
<hour>7</hour> |
||||
<minute>00</minute> |
||||
<second>00</second> |
||||
</starttime> |
||||
|
||||
<!-- This animation will start at 7 AM. --> |
||||
|
||||
<!-- We start with sunrise at 7 AM. It will remain up for 1 hour. --> |
||||
<static> |
||||
<duration>3600.0</duration> |
||||
<file>/usr/share/backgrounds/morning.jpg</file> |
||||
</static> |
||||
|
||||
<!-- Sunrise starts to transition to day at 8 AM. The transition lasts for 5 hours, ending at 1 PM. --> |
||||
<transition type="overlay"> |
||||
<duration>18000.0</duration> |
||||
<from>/usr/share/backgrounds/morning.jpg</from> |
||||
<to>/usr/share/backgrounds/day.jpg</to> |
||||
</transition> |
||||
|
||||
<!-- It's 1 PM, we're showing the day image in full force now, for 5 hours ending at 6 PM. --> |
||||
<static> |
||||
<duration>18000.0</duration> |
||||
<file>/usr/share/backgrounds/day.jpg</file> |
||||
</static> |
||||
|
||||
<!-- It's 7 PM and it's going to start to get darker. This will transition for 6 hours up until midnight. --> |
||||
<transition type="overlay"> |
||||
<duration>21600.0</duration> |
||||
<from>/usr/share/backgrounds/day.jpg</from> |
||||
<to>/usr/share/backgrounds/night.jpg</to> |
||||
</transition> |
||||
|
||||
<!-- It's midnight. It'll stay dark for 5 hours up until 5 AM. --> |
||||
<static> |
||||
<duration>18000.0</duration> |
||||
<file>/usr/share/backgrounds/night.jpg</file> |
||||
</static> |
||||
|
||||
<!-- It's 5 AM. We'll start transitioning to sunrise for 2 hours up until 7 AM. --> |
||||
<transition type="overlay"> |
||||
<duration>7200.0</duration> |
||||
<from>/usr/share/backgrounds/night.jpg</from> |
||||
<to>/usr/share/backgrounds/morning.jpg</to> |
||||
</transition> |
||||
</background> |
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd"> |
||||
<wallpapers> |
||||
<wallpaper deleted="false"> |
||||
<name>PowerEL Default Background</name> |
||||
<filename>/usr/share/backgrounds/default.xml</filename> |
||||
<options>zoom</options> |
||||
</wallpaper> |
||||
</wallpapers> |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 50 KiB |
@ -0,0 +1,51 @@
@@ -0,0 +1,51 @@
|
||||
<background> |
||||
<starttime> |
||||
<year>2012</year> |
||||
<month>06</month> |
||||
<day>4</day> |
||||
<hour>7</hour> |
||||
<minute>00</minute> |
||||
<second>00</second> |
||||
</starttime> |
||||
|
||||
<!-- This animation will start at 7 AM. --> |
||||
|
||||
<!-- We start with sunrise at 7 AM. It will remain up for 1 hour. --> |
||||
<static> |
||||
<duration>3600.0</duration> |
||||
<file>/usr/share/themes/PowerEL7/backgrounds/morning.jpg</file> |
||||
</static> |
||||
|
||||
<!-- Sunrise starts to transition to day at 8 AM. The transition lasts for 5 hours, ending at 1 PM. --> |
||||
<transition type="overlay"> |
||||
<duration>18000.0</duration> |
||||
<from>/usr/share/themes/PowerEL7/backgrounds/morning.jpg</from> |
||||
<to>/usr/share/themes/PowerEL7/backgrounds/day.jpg</to> |
||||
</transition> |
||||
|
||||
<!-- It's 1 PM, we're showing the day image in full force now, for 5 hours ending at 6 PM. --> |
||||
<static> |
||||
<duration>18000.0</duration> |
||||
<file>/usr/share/themes/PowerEL7/backgrounds/day.jpg</file> |
||||
</static> |
||||
|
||||
<!-- It's 7 PM and it's going to start to get darker. This will transition for 6 hours up until midnight. --> |
||||
<transition type="overlay"> |
||||
<duration>21600.0</duration> |
||||
<from>/usr/share/themes/PowerEL7/backgrounds/day.jpg</from> |
||||
<to>/usr/share/themes/PowerEL7/backgrounds/night.jpg</to> |
||||
</transition> |
||||
|
||||
<!-- It's midnight. It'll stay dark for 5 hours up until 5 AM. --> |
||||
<static> |
||||
<duration>18000.0</duration> |
||||
<file>/usr/share/themes/PowerEL7/backgrounds/night.jpg</file> |
||||
</static> |
||||
|
||||
<!-- It's 5 AM. We'll start transitioning to sunrise for 2 hours up until 7 AM. --> |
||||
<transition type="overlay"> |
||||
<duration>7200.0</duration> |
||||
<from>/usr/share/themes/PowerEL7/backgrounds/night.jpg</from> |
||||
<to>/usr/share/themes/PowerEL7/backgrounds/morning.jpg</to> |
||||
</transition> |
||||
</background> |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 144 B |
After Width: | Height: | Size: 144 B |
After Width: | Height: | Size: 151 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 153 B |
After Width: | Height: | Size: 153 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 170 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 286 B |
After Width: | Height: | Size: 328 B |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 397 B |
After Width: | Height: | Size: 396 B |
After Width: | Height: | Size: 635 B |
After Width: | Height: | Size: 638 B |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 975 B |
After Width: | Height: | Size: 797 B |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 1001 B |
After Width: | Height: | Size: 1008 B |
After Width: | Height: | Size: 1004 B |
After Width: | Height: | Size: 1012 B |
After Width: | Height: | Size: 1023 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1006 B |
After Width: | Height: | Size: 1003 B |
After Width: | Height: | Size: 1007 B |
After Width: | Height: | Size: 982 B |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 995 B |
After Width: | Height: | Size: 968 B |
After Width: | Height: | Size: 980 B |
After Width: | Height: | Size: 973 B |
After Width: | Height: | Size: 948 B |
After Width: | Height: | Size: 950 B |
After Width: | Height: | Size: 948 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 879 B |
After Width: | Height: | Size: 841 B |
After Width: | Height: | Size: 825 B |
After Width: | Height: | Size: 806 B |
After Width: | Height: | Size: 784 B |
After Width: | Height: | Size: 749 B |
After Width: | Height: | Size: 752 B |
After Width: | Height: | Size: 685 B |
After Width: | Height: | Size: 668 B |
After Width: | Height: | Size: 621 B |
After Width: | Height: | Size: 560 B |
After Width: | Height: | Size: 541 B |
After Width: | Height: | Size: 443 B |
After Width: | Height: | Size: 349 B |
After Width: | Height: | Size: 299 B |
After Width: | Height: | Size: 83 B |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 1001 B |
After Width: | Height: | Size: 1011 B |
After Width: | Height: | Size: 1016 B |
After Width: | Height: | Size: 1019 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.0 KiB |