diff options
author | Horst3180 | 2015-08-18 15:30:26 +0200 |
---|---|---|
committer | Horst3180 | 2015-08-18 15:30:26 +0200 |
commit | 643ec36e2bb0df263d9ccc5aefabb503ca2a1c10 (patch) | |
tree | 6a7486c2f8d819a34f40feb2b698d16aed5058d3 /common/gtk-3.0/3.18/render-assets.sh | |
parent | 882b84bc30ec03cfeb9fc8a0327104430edb7e69 (diff) | |
download | solarc-theme-643ec36e2bb0df263d9ccc5aefabb503ca2a1c10.tar.gz solarc-theme-643ec36e2bb0df263d9ccc5aefabb503ca2a1c10.tar.xz solarc-theme-643ec36e2bb0df263d9ccc5aefabb503ca2a1c10.zip |
add some fixes for GTK+ 3.18
Diffstat (limited to 'common/gtk-3.0/3.18/render-assets.sh')
-rwxr-xr-x | common/gtk-3.0/3.18/render-assets.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/common/gtk-3.0/3.18/render-assets.sh b/common/gtk-3.0/3.18/render-assets.sh new file mode 100755 index 0000000..24d7675 --- /dev/null +++ b/common/gtk-3.0/3.18/render-assets.sh @@ -0,0 +1,34 @@ +#! /bin/bash + +INKSCAPE="/usr/bin/inkscape" +OPTIPNG="/usr/bin/optipng" + +SRC_FILE="assets.svg" +ASSETS_DIR="assets" +INDEX="assets.txt" + +for i in `cat $INDEX` +do +if [ -f $ASSETS_DIR/$i.png ]; then + echo $ASSETS_DIR/$i.png exists. +else + echo + echo Rendering $ASSETS_DIR/$i.png + $INKSCAPE --export-id=$i \ + --export-id-only \ + --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null #\ + # && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png +fi +if [ -f $ASSETS_DIR/$i@2.png ]; then + echo $ASSETS_DIR/$i@2.png exists. +else + echo + echo Rendering $ASSETS_DIR/$i@2.png + $INKSCAPE --export-id=$i \ + --export-dpi=180 \ + --export-id-only \ + --export-png=$ASSETS_DIR/$i@2.png $SRC_FILE >/dev/null #\ + # && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i@2.png +fi +done +exit 0 |