diff options
author | Zach van Rijn <me@zv.io> | 2021-10-21 13:10:57 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-10-21 13:10:57 -0500 |
commit | efc5cfbe6f7173458bdc27292d7d68f8acb3a220 (patch) | |
tree | f63fd790c80785d4d8b51063d81cecb1c777f316 | |
parent | 84067fe289dfaebf9fe156e11464951a408c47e7 (diff) | |
download | site-ng-efc5cfbe6f7173458bdc27292d7d68f8acb3a220.tar.gz site-ng-efc5cfbe6f7173458bdc27292d7d68f8acb3a220.tar.bz2 site-ng-efc5cfbe6f7173458bdc27292d7d68f8acb3a220.tar.xz site-ng-efc5cfbe6f7173458bdc27292d7d68f8acb3a220.zip |
Rename { 'avatar' --> 'gitlab' } GitLab avatar suffix and generate logo for GitHub group
-rwxr-xr-x | assets/images/polyguin.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/assets/images/polyguin.sh b/assets/images/polyguin.sh index 6371991..49a7078 100755 --- a/assets/images/polyguin.sh +++ b/assets/images/polyguin.sh @@ -184,8 +184,8 @@ chown 1000:1000 icons/gen_polyguin_color_favicon.ico; ## # GitLab group/project avatar is 96x96 square. MUST be square. # -magick convert -background none -gravity center -resize 96x96 -extent 96x96 polyguin_color.svg gen_polyguin_color_avatar.png; -chown 1000:1000 gen_polyguin_color_avatar.png; +magick convert -background none -gravity center -resize 96x96 -extent 96x96 polyguin_color.svg gen_polyguin_color_gitlab.png; +chown 1000:1000 gen_polyguin_color_gitlab.png; ## # Twitter avatar is 400x400 square. MUST be square. @@ -199,6 +199,12 @@ chown 1000:1000 gen_polyguin_color_twitter.png; magick convert -background none -gravity center -resize 1200x900 -extent 1200x900 gen_polylogo_black_color_x900.png gen_polyguin_color_wordpress.png; chown 1000:1000 gen_polyguin_color_wordpress.png; +## +# GitHub group/project avatar is 500x500 square. MUST be square. +# +magick convert -background none -gravity center -resize 500x500 -extent 500x500 polyguin_color.svg gen_polyguin_color_github.png; +chown 1000:1000 gen_polyguin_color_github.png; + #=============================================================== EOF #=============================================================== |