10 lines
119 B
Text
10 lines
119 B
Text
|
#!/bin/bash
|
||
|
|
||
|
cd data/themes
|
||
|
|
||
|
for filename in *.edc
|
||
|
do
|
||
|
/opt/e17/bin/edje_cc -id ../images -fd ../fonts $filename
|
||
|
done
|
||
|
|