1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 01:07:11 -07:00

add transparency padding thing for twitter

This commit is contained in:
Connor Olding 2017-04-02 10:54:00 +00:00
parent 787cf81258
commit 722624035c

8
sh/tpad Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
tpad() {
while [ $# -gt 0 ]; do
gm convert -bordercolor "#000000FF" -border 1x1 "$1" "${1/.png/}.tt.png";
shift
done
}
tpad "$@"