From 1d25ad64765197d4e4996ca47395045715bc94b9 Mon Sep 17 00:00:00 2001 From: germedeb Date: Sat, 10 Sep 2022 15:32:13 -0300 Subject: [PATCH] renamed some scripts --- .../export/{export-actions.sh => actions.sh} | 0 .../{export-animations.sh => animations.sh} | 0 tasks/export/{export-apps.sh => apps.sh} | 0 .../{export-categories.sh => categories.sh} | 0 .../export/{export-devices.sh => devices.sh} | 0 tasks/export/export-emblems.sh | 36 ------------------- .../{export-mimetypes.sh => mimetypes.sh} | 0 tasks/export/{export-places.sh => places.sh} | 0 tasks/export/{export-status.sh => status.sh} | 0 9 files changed, 36 deletions(-) rename tasks/export/{export-actions.sh => actions.sh} (100%) rename tasks/export/{export-animations.sh => animations.sh} (100%) rename tasks/export/{export-apps.sh => apps.sh} (100%) rename tasks/export/{export-categories.sh => categories.sh} (100%) rename tasks/export/{export-devices.sh => devices.sh} (100%) delete mode 100755 tasks/export/export-emblems.sh rename tasks/export/{export-mimetypes.sh => mimetypes.sh} (100%) rename tasks/export/{export-places.sh => places.sh} (100%) rename tasks/export/{export-status.sh => status.sh} (100%) diff --git a/tasks/export/export-actions.sh b/tasks/export/actions.sh similarity index 100% rename from tasks/export/export-actions.sh rename to tasks/export/actions.sh diff --git a/tasks/export/export-animations.sh b/tasks/export/animations.sh similarity index 100% rename from tasks/export/export-animations.sh rename to tasks/export/animations.sh diff --git a/tasks/export/export-apps.sh b/tasks/export/apps.sh similarity index 100% rename from tasks/export/export-apps.sh rename to tasks/export/apps.sh diff --git a/tasks/export/export-categories.sh b/tasks/export/categories.sh similarity index 100% rename from tasks/export/export-categories.sh rename to tasks/export/categories.sh diff --git a/tasks/export/export-devices.sh b/tasks/export/devices.sh similarity index 100% rename from tasks/export/export-devices.sh rename to tasks/export/devices.sh diff --git a/tasks/export/export-emblems.sh b/tasks/export/export-emblems.sh deleted file mode 100755 index f110d29..0000000 --- a/tasks/export/export-emblems.sh +++ /dev/null @@ -1,36 +0,0 @@ -#! /bin/bash - -# SPDX-FileCopyrightText: 2022 debgerme -# -# SPDX-License-Identifier: GPL-3.0-or-later - -for SVG in _build/icons-t/emblems/*.svg -do - if [[ -f "${SVG}" ]]; then - - # this command removes the .svg extension in the file, - # and then write it to the variable N - N=$(basename ${SVG} .svg) - # this do de same, but removes .symbolic.svg - Nscalable=$(basename ${SVG} .symbolic.svg) - - # this runs the export operation in paralell. - parallel ::: \ - "inkscape -w 16 -h 16 -o _build/aleta/emblems/16/${N}.png ${SVG} >/dev/null 2>&1" \ - "inkscape -w 24 -h 24 -o _build/aleta/emblems/24/${N}.png ${SVG} >/dev/null 2>&1" \ - "inkscape -w 32 -h 32 -o _build/aleta/emblems/32/${N}.png ${SVG} >/dev/null 2>&1" \ - "inkscape -w 48 -h 48 -o _build/aleta/emblems/48/${N}.png ${SVG} >/dev/null 2>&1" \ - "inkscape -w 64 -h 64 -o _build/aleta/emblems/64/${N}.png ${SVG} >/dev/null 2>&1" - - # this copies the original svg to the scalable, - # but replacing the .symbolic.svg with .svg - cp ${SVG} _build/aleta/emblems/scalable/${Nscalable}.svg - # this moves the icon to the icons-e folder. this - # means that the icon is exported and you don't - # need to export it again - mv ${SVG} _build/icons-e/emblems/ - - # output to the terminal - echo exported: ${SVG} - fi -done diff --git a/tasks/export/export-mimetypes.sh b/tasks/export/mimetypes.sh similarity index 100% rename from tasks/export/export-mimetypes.sh rename to tasks/export/mimetypes.sh diff --git a/tasks/export/export-places.sh b/tasks/export/places.sh similarity index 100% rename from tasks/export/export-places.sh rename to tasks/export/places.sh diff --git a/tasks/export/export-status.sh b/tasks/export/status.sh similarity index 100% rename from tasks/export/export-status.sh rename to tasks/export/status.sh