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.

24 lines
290 B
Bash

#!/bin/bash -e
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
edje_cc -id $data_path/images -fd $data_path/fonts $filename
done
cd ..
done