diff options
author | Zach van Rijn <me@zv.io> | 2021-08-08 17:36:40 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-08-08 17:36:40 -0500 |
commit | 15977e8485101c5a9542d6181d9f7e77800afb27 (patch) | |
tree | 041e80b12633c84ec3fbec1c2ce1b4607bb58a52 | |
parent | bba5eff404308761a7c8d24f44d78c5213983ea2 (diff) | |
download | site-ng-15977e8485101c5a9542d6181d9f7e77800afb27.tar.gz site-ng-15977e8485101c5a9542d6181d9f7e77800afb27.tar.bz2 site-ng-15977e8485101c5a9542d6181d9f7e77800afb27.tar.xz site-ng-15977e8485101c5a9542d6181d9f7e77800afb27.zip |
Add logo for Twitter.
-rwxr-xr-x | assets/images/polyguin.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/assets/images/polyguin.sh b/assets/images/polyguin.sh index a6952b4..6371991 100755 --- a/assets/images/polyguin.sh +++ b/assets/images/polyguin.sh @@ -188,6 +188,12 @@ magick convert -background none -gravity center -resize 96x96 -extent 96x96 poly chown 1000:1000 gen_polyguin_color_avatar.png; ## +# Twitter avatar is 400x400 square. MUST be square. +# +magick convert -background none -gravity center -resize 400x400 -extent 400x400 polyguin_color.svg gen_polyguin_color_twitter.png; +chown 1000:1000 gen_polyguin_color_twitter.png; + +## # WordPress theme screenshot is 1200x900. MUST be this. # magick convert -background none -gravity center -resize 1200x900 -extent 1200x900 gen_polylogo_black_color_x900.png gen_polyguin_color_wordpress.png; |