Adwaita: remove old cruft not used anymore

This commit is contained in:
Lapo Calamandrei 2014-06-14 08:31:36 +02:00
parent a1bf6718f5
commit 82b1232898
2 changed files with 0 additions and 68 deletions

View File

@ -1,34 +0,0 @@
button-border
generic-border
button-border-default
generic-border-focused
generic-border-backdrop
primary-toolbar-button-border
primary-toolbar-generic-border
primary-toolbar-button-border-default
primary-toolbar-generic-border-focused
primary-toolbar-generic-border-backdrop
nohl-button-border
nohl-generic-border
nohl-button-border-default
nohl-generic-border-focused
nohl-generic-border-backdrop
button-border-dark
generic-border-dark
button-border-default-dark
generic-border-focused-dark
generic-border-backdrop-dark
primary-toolbar-button-border-dark
primary-toolbar-generic-border-dark
primary-toolbar-button-border-default-dark
primary-toolbar-generic-border-focused-dark
primary-toolbar-generic-border-backdrop-dark
nohl-button-border-dark
nohl-generic-border-dark
nohl-button-border-default-dark
nohl-generic-border-focused-dark
nohl-generic-border-backdrop-dark
generic-border-transparent
nohl-generic-border-transparent
generic-border-transparent-dark
nohl-generic-border-transparent-dark

View File

@ -1,34 +0,0 @@
#! /bin/bash
INKSCAPE="/usr/bin/inkscape"
OPTIPNG="/usr/bin/optipng"
SRC_FILE="assets.svg"
ASSETS_DIR="borders"
INDEX="borders.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