2016-01-02 23:38:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-01-22 16:01:20 +01:00
|
|
|
# The script creates SVG templates for all cursors.
|
|
|
|
# Before run create PNG icon of tool!
|
|
|
|
# Use SVG templates for creating PNG cursors.
|
|
|
|
|
|
|
|
# IMPORTANT!!! Run script inside 'scripts' directory.
|
|
|
|
|
2016-01-02 23:38:02 +01:00
|
|
|
# usage:
|
|
|
|
# $ ./generate_tool_cursor.sh
|
|
|
|
|
2016-01-22 16:01:20 +01:00
|
|
|
# Notes.
|
|
|
|
# No, template_cursor.svg is not broken! It is just template, no point open it.
|
|
|
|
# After creating SVG templates open them by Inkscape, previewer doesn't show pictures inside svg file linked by url.
|
|
|
|
# I have spent hour before understand why i don't see PNG inside SVG in Nautilus.
|
|
|
|
|
2016-01-02 23:38:02 +01:00
|
|
|
PATTERN=*@2x.png
|
2016-01-22 16:01:20 +01:00
|
|
|
TOOLICONPATH=../src/app/valentina/share/resources/toolicon/32x32/ # PNG tool icon should be here
|
2016-01-02 23:38:02 +01:00
|
|
|
TOOLICONS=`ls $TOOLICONPATH$PATTERN`
|
2016-01-22 16:01:20 +01:00
|
|
|
OUTPATH=../src/app/valentina/share/resources/cursor/svg # Seek SVG templates here
|
2016-01-02 23:38:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
for var in $TOOLICONS
|
|
|
|
do
|
2016-01-22 16:01:20 +01:00
|
|
|
basename=${var##*/} # remove the path from a path-string
|
|
|
|
basename=${basename%.png} # remove the extension from a path-string
|
2016-01-02 23:38:02 +01:00
|
|
|
basename=${basename%@2x} # remove optional @2x suffix
|
|
|
|
if [ ! -f $basename@2x.png ]; then # always prefere hidpi version
|
|
|
|
sed "s/<<basename>>/$basename@2x/" $OUTPATH/template_cursor.svg > $OUTPATH/${basename}_cursor.svg
|
|
|
|
else
|
|
|
|
sed "s/<<basename>>/$basename/" $OUTPATH/template_cursor.svg > $OUTPATH/${basename}_cursor.svg
|
|
|
|
fi
|
|
|
|
done
|