blob: ccccb855692fef181fb5363c4279e0565b1f515d (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
set -o pipefail
curl "$DRASL_BACKEND/session/minecraft/profile/$1" \
| jq -r '.properties[] | select(.name == "textures") | .value' \
| base64 -d \
| jq -r '.textures.SKIN.url' \
| xargs -n1 curl \
| magick - -scale $(($2 * 8)) -crop "$2"x"$2"+"$2"+"$2" -
|