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
main
Abraxa 16 years ago
parent aedb86b36d
commit 5064c05317

@ -2,8 +2,22 @@
cd data/themes
for filename in *.edc
for theme in *
do
/opt/e17/bin/edje_cc -id ../images -fd ../fonts $filename
done
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

@ -12,7 +12,7 @@ FULLSCREEN = True
TITLE = "epydial"
WM_INFO = ("epydial", "epydial")
EDJE_FILE_PATH = "data/themes/"
EDJE_FILE_PATH = "data/themes/default/"
MAIN_SCREEN_NAME = "pyneo/dialer/main"
INCALL_SCREEN_NAME = "pyneo/dialer/incall"

Loading…
Cancel
Save