Xfce fixes

Improve scrollbars appearance #38
Fix inconsistent tooltips colors #39
This commit is contained in:
EliverLara
2019-07-07 11:58:02 -05:00
parent b62b54423d
commit 9353b631a0
12 changed files with 37 additions and 37 deletions

View File

@@ -9,9 +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
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 \
@@ -19,6 +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
fi
done
exit 0