diff --git a/.reuse/dep5 b/.reuse/dep5 index 995acaa..40c8947 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -3,6 +3,6 @@ Upstream-Name: Aleta-Postre Upstream-Contact: debgerme Source: https://git.owlcode.tech/germedeb/aleta-postre -Files: icons/apps/* icons/ui/* icons/places/* icons/status/* icons/notdetermined/* icons/mimetypes/* icons/templates/* icons/devices/* icons/categories/* icons/scalable/* icons/animations/* icons/actions/* icons/emblems/* +Files: icons/* Copyright: 2022 debgerme License: CC-BY-SA-4.0 diff --git a/new/templates/design.md b/new/templates/design.md deleted file mode 100644 index de17823..0000000 --- a/new/templates/design.md +++ /dev/null @@ -1,35 +0,0 @@ - -# THIS IS WIP SO PLEASE CONTACT ME INSTEAD OF READING THIS IF YOU WILL DESIGN ICONS. - -## Inkscape setup - -_This step (Inkscape setup) is fully optional._ - -#### import the inkscape palette in the Tools folder. how?: -* copy `other/aleta-postre.gpl` to your inkscape folder. -In gnu linux are two possibilities: - if you have the flatpak version: `~/.var/app/org.inkscape.Inkscape/config/inkscape/palettes` - if you have the native version: `~/.config/inkscape/palettes`. - -## Concepts - -here is an image describing the parts of an icon of aleta. - -![concepts](../../other/Screenshots/design-concepts.svg) - -## Design - -* the position of the foreground will fit in the hints. -* the foreground must be white. *This don't mean that you will draw every path in white. you can use any color you want while drawing. this means that the* **result** *of your drawing session is an icon with a white foreground* -* the minimal width is a square of the grid. preferably make «2 squares lines» as minimum. -* if the icon is too complex, try to simplify it. -* please use the **original color**¹; if the original icon shows many colors, decide by yourself what are the best color to use. -* you can use plain colors, but gradients are appreciated. - -¹: in aleta postre, i have changed the color rules and now aleta uses the original colors of the apps. there is no more the needing of a palette. - -## folder design - -* instead of the template.svg, use the template-folder.svg. -* this template is specific for folders and **NOT** FOR ICONS. -* this template hast only one hint. diff --git a/tasks/build.sh b/tasks/build.sh index c398696..88cd5d6 100755 --- a/tasks/build.sh +++ b/tasks/build.sh @@ -117,15 +117,7 @@ esac if [ "$EXPOR" = yes ]; then printf "${info_color}exporting all the icons... this will take a long time.${reset_colors}\\n" - ./tasks/export/export-emblems.sh - ./tasks/export/export-places.sh - ./tasks/export/export-apps.sh - ./tasks/export/export-categories.sh - ./tasks/export/export-devices.sh - ./tasks/export/export-status.sh - ./tasks/export/export-mimetypes.sh - ./tasks/export/export-actions.sh - ./tasks/export/export-animations.sh + ./tasks/runexport.sh fi case "$@" in *--use-optipng*|*-o*) diff --git a/tasks/runexport.sh b/tasks/runexport.sh new file mode 100755 index 0000000..3c81c58 --- /dev/null +++ b/tasks/runexport.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +./tasks/export/export-emblems.sh +./tasks/export/export-places.sh +./tasks/export/export-apps.sh +./tasks/export/export-categories.sh +./tasks/export/export-devices.sh +./tasks/export/export-status.sh +./tasks/export/export-mimetypes.sh +./tasks/export/export-actions.sh +./tasks/export/export-animations.sh