KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_optimize-screenshots.sh 140B

12345678910
  1. #!/bin/bash
  2. set -e
  3. cd $(dirname $0)
  4. for file in $(find . -name "*.png"); do
  5. pngcrush ${file} ${file}.new
  6. mv ${file}.new ${file}
  7. done