mirror of
https://git.wetfence.xyz/RandyTheSilly/Maan-On-My-Wrist-XL.git
synced 2026-08-27 20:26:27 -04:00
8 lines
218 B
Bash
Executable File
8 lines
218 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
# ALWAYS USE ZOPFLI TO CRUSH PNGS AS MUCH AS POSSIBLE BEFORE SHIPPING
|
|
|
|
for file in **/*; do
|
|
zopflipng -y --iterations=500 --filters=01234mepb --lossy_8bit --lossy_transparent $file $file &
|
|
done
|