linuxware/.themes/dracula/xfwm4/render_assets.fish
Alexandre Cavalheiro S. Tiago Da Silva 67c7ccd66b
chore: initial commit
2021-04-05 10:48:05 -03:00

13 lines
284 B
Fish

set -l red (set_color -o red)
set -l cyan (set_color -o cyan)
for i in assets/*;
set -l file_name (basename $i .svg)
if test -f ./$file_name'.png'
echo $red$file_name exists
else
echo $cyan'Creating '$file_name'.png'
convert -background none $i ./$file_name'.png'
end
;end