mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-14 20:33:05 +02:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5108 bfdf4180-ca20-0410-9c96-a3a8aa849046
20 lines
469 B
Bash
Executable File
20 lines
469 B
Bash
Executable File
#!/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
|
|
|