updated build.sh, updated tab-new-symbolic, and symbolic template

This commit is contained in:
germedeb 2022-10-01 17:03:17 -03:00
parent 8b52595713
commit 2ee92d7cbd
4 changed files with 12 additions and 6 deletions

View File

@ -1825,10 +1825,10 @@
pagecolor="#f4f4f4"
bordercolor="#000000"
borderopacity="0.3372549"
inkscape:pageopacity="0.86666667"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="32"
inkscape:cx="4.265625"
inkscape:cx="4.28125"
inkscape:cy="6.65625"
inkscape:document-units="pt"
inkscape:current-layer="layer2"

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -1825,7 +1825,7 @@
pagecolor="#f4f4f4"
bordercolor="#000000"
borderopacity="0.3372549"
inkscape:pageopacity="0.86666667"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="32"
inkscape:cx="2.75"

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -121,15 +121,21 @@ esac
# checks if you have optipng, if you have it, launch opticall. if not, exit
if [ "$OPTIPNG" = use ]; then
if [ "$IGNOREDEPS" != ok ]; then
command -v optipng >/dev/null 2>&1 || { echo >&2 "Missing dependency: optipng"; DEPSCOMPLETE=n; }
if [ "$DEPSCOMPLETE" = n ]; then
echo To optimize the build, please install optipng
exit 2
fi
fi
printf "${info_color}Using optipng to reduce the size of the build...${reset_colors}\\n"
./tasks/opticall.sh
./tasks/opticall.sh;
fi
# copy the index.theme file to the build. necesary to interpretate the icon pack in the settings

View File

@ -6,6 +6,6 @@
for FILE in _build/aleta/*/*/*.png
do
optipng -o7 "$FILE" >/dev/null 2>&1
echo optimized: "$FILE"
optipng -o7 "$FILE" >/dev/null 2>&1
echo optimized: "$FILE"
done