You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qubes-installer-qubes-os/qubes-logos/gen_throbber.sh

15 lines
285 B

#/bin/bash
FIRST=00
LAST=15
IMAGE=plymouth/charge/throbber-
FORMAT=png
cd `dirname $0`
convert $IMAGE$FIRST.$FORMAT $IMAGE$LAST.$FORMAT -morph $(( 10#$LAST - 1 )) __throbber.png
COUNT=0
for i in `seq -w $FIRST $LAST`; do
mv __throbber-$((COUNT++)).$FORMAT $IMAGE$i.$FORMAT
done