You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
371 B
Bash

#!/bin/sh -e
for theme in data/themes/*; do
if [ -d "$theme" ]; then
cd "$theme"
theme=`basename "$theme"`
echo "Compiling theme $theme"
data_path="../../themes_data/$theme"
for filename in *.edc; do
edje_cc \
-id "$data_path/images" \
-fd "$data_path/fonts" \
$filename
done
cd - > /dev/null
fi
done
chmod -R 777 ./data/themes/blackwhite