#!/bin/bash

# kenzy logo
rm -rf places/*/start-here.png
for res in 128  16  22  256  32  48  64; do \
  convert -scale ${res} kenzy-logo-icon.png places/${res}/start-here.png
done;
for res in 128  16  22  256  32  48  64; do \
  cd places/${res}
  rm -rf start-here-kde.png start-here-kde-fedora.png start-here-fedora.png
  ln -s ./start-here.png start-here-kde.png
  ln -s ./start-here.png start-here-kde-fedora.png
  ln -s ./start-here.png start-here-fedora.png
  cd ../..
done;

install -D -m 644 kenzy-logo-icon.svg places/scalable/start-here.svg
cd places/scalable
rm -rf start-here-kde.svg start-here-kde-fedora.svg start-here-fedora.svg
ln -s ./start-here.svg start-here-kde.svg
ln -s ./start-here.svg start-here-kde-fedora.svg
ln -s ./start-here.svg start-here-fedora.svg
cd ../..
