Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.

Commit a8e1147

Browse files
committed
run ./update-variations.py MintSoda (new color)
new files: src/Mint-Y/variations/MintSoda/*
1 parent e191b0f commit a8e1147

627 files changed

Lines changed: 28155 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
7.5 KB
Loading
7.75 KB
Loading

src/Mint-Y/variations/MintSoda/cinnamon/mint-y-thumbnails-src.svg

Lines changed: 606 additions & 0 deletions
Loading
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#! /bin/bash
2+
3+
# WARNING: "--export-filename" is for Inkscape >= 1.0
4+
5+
INKSCAPE="/usr/bin/inkscape"
6+
OPTIPNG="/usr/bin/optipng"
7+
SRC_FILE="mint-y-thumbnails-src.svg"
8+
INDEX='mint-y-thumbnail mint-y-dark-thumbnail'
9+
10+
for i in $INDEX
11+
do
12+
if [ -f $i.png ]; then
13+
echo $i.png exists.
14+
else
15+
echo
16+
echo Rendering $i.png
17+
$INKSCAPE --export-id=$i \
18+
--export-id-only \
19+
--export-filename=$i.png $SRC_FILE >/dev/null \
20+
&& $OPTIPNG -o7 --quiet $i.png
21+
fi
22+
done
23+
exit 0

0 commit comments

Comments
 (0)