mirror of
https://github.com/notwa/rc
synced 2024-11-05 07:29:04 -08:00
12 lines
206 B
Bash
Executable file
12 lines
206 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
# YES_BASH
|
|
# YES_DASH
|
|
|
|
tpad() {
|
|
for f; do
|
|
gm convert -bordercolor "#000000FF" -border 1x1 "$f" "${f%.png}.tt.png"
|
|
done
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || tpad "$@"
|