neo1973-germany/epydial/compile_theme
fgau 0969b8fc23 add pix viewer, contacts etc.
git-svn-id: http://www.neo1973-germany.de/svn@213 46df4e5c-bc4e-4628-a0fc-830ba316316d
2008-12-08 15:21:53 +00:00

18 lines
371 B
Bash
Executable file

#!/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