Improve gtk2 scrollbars style

This commit is contained in:
EliverLara
2019-07-07 12:42:27 -05:00
parent 23129fe819
commit 37f166450a
12 changed files with 36 additions and 32 deletions

View File

@@ -9,6 +9,9 @@ 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 \
@@ -16,5 +19,6 @@ do
--export-background-opacity=0 \
--export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \
&& $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png
fi
done
exit 0