1
0
mirror of https://github.com/horst3180/arc-theme.git synced 2024-09-30 06:50:45 +00:00
horst3180_arc-theme/common/gtk-2.0/render-assets.sh

61 lines
1.9 KiB
Bash
Raw Normal View History

2015-05-16 20:50:01 +00:00
#! /bin/bash
INKSCAPE="/usr/bin/inkscape"
OPTIPNG="/usr/bin/optipng"
SRC_FILE="assets.svg"
ASSETS_DIR="assets"
2016-08-30 21:58:13 +00:00
DARK_SRC_FILE="assets-dark.svg"
DARK_ASSETS_DIR="assets-dark"
2015-05-16 20:50:01 +00:00
INDEX="assets.txt"
for i in `cat $INDEX`
2016-08-30 21:58:13 +00:00
do
2015-05-16 20:50:01 +00:00
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 \
2015-12-28 17:17:01 +00:00
--export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \
&& $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png
2015-05-16 20:50:01 +00:00
fi
2016-08-30 21:58:13 +00:00
if [ -f $DARK_ASSETS_DIR/$i.png ]; then
echo $DARK_ASSETS_DIR/$i.png exists.
else
echo
echo Rendering $DARK_ASSETS_DIR/$i.png
$INKSCAPE --export-id=$i \
--export-id-only \
--export-png=$DARK_ASSETS_DIR/$i.png $DARK_SRC_FILE >/dev/null \
&& $OPTIPNG -o7 --quiet $DARK_ASSETS_DIR/$i.png
fi
2015-05-16 20:50:01 +00:00
done
2016-08-30 21:58:13 +00:00
cp $ASSETS_DIR/entry-toolbar.png menubar-toolbar/entry-toolbar.png
cp $ASSETS_DIR/entry-active-toolbar.png menubar-toolbar/entry-active-toolbar.png
cp $ASSETS_DIR/entry-disabled-toolbar.png menubar-toolbar/entry-disabled-toolbar.png
cp $ASSETS_DIR/menubar.png menubar-toolbar/menubar.png
cp $ASSETS_DIR/menubar_button.png menubar-toolbar/menubar_button.png
cp $DARK_ASSETS_DIR/button.png menubar-toolbar/button.png
cp $DARK_ASSETS_DIR/button-hover.png menubar-toolbar/button-hover.png
cp $DARK_ASSETS_DIR/button-active.png menubar-toolbar/button-active.png
cp $DARK_ASSETS_DIR/button-insensitive.png menubar-toolbar/button-insensitive.png
cp $DARK_ASSETS_DIR/entry-toolbar.png menubar-toolbar/entry-toolbar-dark.png
cp $DARK_ASSETS_DIR/entry-active-toolbar.png menubar-toolbar/entry-active-toolbar-dark.png
cp $DARK_ASSETS_DIR/entry-disabled-toolbar.png menubar-toolbar/entry-disabled-toolbar-dark.png
cp $DARK_ASSETS_DIR/menubar.png menubar-toolbar/menubar-dark.png
cp $DARK_ASSETS_DIR/menubar_button.png menubar-toolbar/menubar_button-dark.png
2015-05-16 20:50:01 +00:00
exit 0