Fix place status bar on backgrounds with logo

This commit is contained in:
Andrey Cherepanov 2019-06-04 13:31:13 +03:00
parent b3c6d80d23
commit de9496983c

View File

@ -28,7 +28,7 @@ graphics:
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 \
for i in `ls -1 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; \