neo1973-germany/epydial/compile_theme
Abraxa 5064c05317 Make epydial able to handle multiple themes
Update the locations in data/
Update the theme compile script



git-svn-id: http://www.neo1973-germany.de/svn@110 46df4e5c-bc4e-4628-a0fc-830ba316316d
2008-08-31 07:56:51 +00:00

23 lines
300 B
Bash
Executable file

#!/bin/bash
cd data/themes
for theme in *
do
if [[ ! -d "$theme" ]]
then
continue
fi
echo "Compiling theme $theme"
cd $theme
data_path="../../themes_data/"$theme"/"
for filename in *.edc
do
/opt/e17/bin/edje_cc -id $data_path/images -fd $data_path/fonts $filename
done
cd ..
done