Skip to content

Instantly share code, notes, and snippets.

@harish2704
Created August 5, 2016 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harish2704/ebc304d83d53ccd578db5e49faa8e1f9 to your computer and use it in GitHub Desktop.
Save harish2704/ebc304d83d53ccd578db5e49faa8e1f9 to your computer and use it in GitHub Desktop.
automatically resize icons for Linux desktop configuration file in 256 128 96 and 48 pixel resolution
for i in 256 128 96 48; do dname="${i}x${i}"; mkdir $dname; convert INFILE.png -resize $dname "$dname/OUTFILE.png"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment