14 lines
194 B
Bash
14 lines
194 B
Bash
|
infiles="map.png heat.png"
|
||
|
outdir="../marshroom/dungeon/"
|
||
|
|
||
|
pipenv run python dungeon.py
|
||
|
|
||
|
for f in $infiles
|
||
|
do
|
||
|
#magick $f -resize 512x512 $f
|
||
|
echo $f
|
||
|
done
|
||
|
|
||
|
#cp $infile $outfile
|
||
|
sxiv *.png
|