Skip to content

Instantly share code, notes, and snippets.

@gingerbeardman
Last active May 5, 2022 15:30
Show Gist options
  • Save gingerbeardman/11fa0c238a6efd9fa112f1da6e044373 to your computer and use it in GitHub Desktop.
Save gingerbeardman/11fa0c238a6efd9fa112f1da6e044373 to your computer and use it in GitHub Desktop.
Scale a GIF @2x and Optimise using gifsicle
FILE=`basename "$@" .gif`
PARENT=`dirname "$@"`
/usr/local/bin/gifsicle -O1 -Okeep-empty --careful --scale 2 "$@" > "$PARENT/$FILE.opt.gif"
@gingerbeardman
Copy link
Author

gingerbeardman commented May 5, 2022

Using ContextMenu.app you can add this to the right-click menu in Finder.

Screen shot 2022-05-05 at 16 28 11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment