Commit db67c1b3 authored by Andrey Cherepanov's avatar Andrey Cherepanov

Put status banner to plymouth and grub wallpapers

parent d68f736f
...@@ -24,7 +24,17 @@ graphics: ...@@ -24,7 +24,17 @@ graphics:
# convert images/small.png images/product-logo.png -geometry +30+30 -composite images/grub.png # convert images/small.png images/product-logo.png -geometry +30+30 -composite images/grub.png
# cp -al images/grub.png images/boot.png # cp -al images/grub.png images/boot.png
# use predefined image 800x600 with logo # use predefined image 800x600 with logo
cp -al images/boot.png images/grub.png if [ -n "$(STATUS)" ];then \
mv images/boot.png images/.boot.png; \
convert images/.boot.png -undercolor '#c62530' -fill white -font /usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf -style Normal -weight Normal -pointsize 30 -gravity northwest -draw 'text 0,55 " $(STATUS) "' images/boot.png;\
rm -f images/.boot.png; \
for i in images/with-logo/*.png; do \
mv images/with-logo/$$i images/with-logo/.$$i; \
convert images/with-logo/.$$i -undercolor '#c62530' -fill white -font /usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf -style Normal -weight Normal -pointsize 30 -gravity northwest -draw 'text 0,55 " $(STATUS) "' images/with-logo/$$i;\
rm -f images/with-logo/.$$i; \
done; \
fi
cp -al images/boot.png images/grub.png; \
# product logo for ahttpd # product logo for ahttpd
cp -al images/product-logo.png ahttpd/images/product-logo.png cp -al images/product-logo.png ahttpd/images/product-logo.png
# product logo for indexhtml # product logo for indexhtml
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment