Now all the export scripts echoes the SVG they are exporting
This commit is contained in:
parent
722223f3ea
commit
ac15df9a60
@ -5,6 +5,7 @@ do
|
||||
if [[ -f "${SVG}" ]]; then
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
parallel ::: \
|
||||
"inkscape -w 8 -h 8 -o _build/aleta/actions/8/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/actions/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
|
@ -5,6 +5,7 @@ do
|
||||
if [[ -f "${SVG}" ]]; then
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
parallel ::: \
|
||||
"inkscape -w 8 -h 8 -o _build/aleta/animations/8/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/animations/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
|
@ -4,6 +4,7 @@ for SVG in _build/icons-t/apps/*.svg
|
||||
do
|
||||
if [[ -f "${SVG}" ]]; then
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
|
||||
parallel ::: \
|
||||
|
@ -4,6 +4,8 @@ for SVG in _build/icons-t/categories/*.svg
|
||||
do
|
||||
if [[ -f "${SVG}" ]]; then
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
|
||||
parallel ::: \
|
||||
"inkscape -w 8 -h 8 -o _build/aleta/categories/8/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
|
@ -4,6 +4,8 @@ for SVG in _build/icons-t/devices/*.svg
|
||||
do
|
||||
if [[ -f "${SVG}" ]]; then
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
|
||||
parallel ::: \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/devices/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
|
@ -4,6 +4,8 @@ for SVG in _build/icons-t/mimetypes/*.svg
|
||||
do
|
||||
if [[ -f "${SVG}" ]]; then
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
|
||||
parallel ::: \
|
||||
"inkscape -w 8 -h 8 -o _build/aleta/mimetypes/8/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
|
@ -6,6 +6,7 @@ do
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
|
||||
parallel ::: \
|
||||
"inkscape -w 8 -h 8 -o _build/aleta/places/8/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/places/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
|
@ -5,6 +5,8 @@ do
|
||||
if [[ -f "${SVG}" ]]; then
|
||||
N=$(basename ${SVG} .svg)
|
||||
|
||||
echo exporting ${SVG}
|
||||
|
||||
parallel ::: \
|
||||
"inkscape -w 8 -h 8 -o _build/aleta/status/8/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/status/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
|
Loading…
Reference in New Issue
Block a user