4 lines
142 B
Text
4 lines
142 B
Text
|
#!/bin/zsh
|
||
|
date=${1%_*.bmp}
|
||
|
magick ${date}_top.bmp ${date}_bot.bmp -alpha set -gravity Center -background 'rgba(0,0,0,0)' -append ${date}.png
|