14 lines
194 B
Bash
Executable File
14 lines
194 B
Bash
Executable File
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
|