#!/bin/bash # Dependance : png2ico PNG_DIR="../breeze-icons" if [ -z "$(which icotool 2> /dev/null)" ]; then echo "Error: icotool not found." exit 1 fi function generateIcon { echo "Generating icon from files ${1}.png in ${PNG_DIR}." icotool -c -o "${1}.ico" $(find "${PNG_DIR}" -name "${1}.png" | grep -v 2[25]) } generateIcon qelectrotech generateIcon application-x-qet-element generateIcon application-x-qet-project generateIcon application-x-qet-titleblock