#!/bin/bash

# link Tango scalable icons in images/icons directory
EWT_DIR=/usr/share/ewt/static/images/icons
TANGO_DIR=/usr/share/icons/Tango/scalable

if [ -e $EWT_DIR ]
then
    rm -rf "$EWT_DIR"
fi

mkdir -p $EWT_DIR
find $TANGO_DIR -name "*.svg" -type f -exec ln -s '{}' $EWT_DIR/ \;

exit 0
