diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-05 15:01:22 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-05 15:07:16 +0200 |
commit | f4fcc3f927412c4a89b032a99db07019a9b63749 (patch) | |
tree | 7f3dc3c9b302a1f5f7abd9db1361719b71d781a5 /favicons/conv.sh | |
parent | 67605eed1194e81699268eb8b60d6cf9682b5a38 (diff) | |
download | plantagenet-f4fcc3f927412c4a89b032a99db07019a9b63749.tar.gz |
favicons
Diffstat (limited to 'favicons/conv.sh')
-rw-r--r-- | favicons/conv.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/favicons/conv.sh b/favicons/conv.sh new file mode 100644 index 0000000..b61ef19 --- /dev/null +++ b/favicons/conv.sh @@ -0,0 +1,6 @@ +for F in seat_*.png +do + B=${F/seat/favicon} + echo $F $B + convert -background transparent $F -rotate 315 +repage -crop 270x270+125+150 +repage -colorspace RGB -resize 128x128! -colorspace sRGB $B +done |