5064c05317
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
23 lines
300 B
Bash
Executable file
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
|