numix-gtk-theme/svg-sources/export-png

12 lines
258 B
Plaintext
Raw Normal View History

2013-02-26 21:52:45 +00:00
#!/bin/bash
install_path=$HOME"/.themes/numix-gtk-theme/"
2013-02-26 21:52:45 +00:00
source_dir="gtk-3.0/assets"
target_dir=$install_path"gtk-3.0/assets/"
2013-02-26 21:52:45 +00:00
cd $source_dir;
for i in *;
do inkscape $i --export-png=`echo $target_dir$i | sed -e 's/svg$/png/'`;
echo $target_dir$i;
2013-02-26 21:52:45 +00:00
done