Skip to content

Instantly share code, notes, and snippets.

@mkorcha
mkorcha / pgag.sh
Created April 1, 2015 18:27
PhoneGap Asset Generator - sizes icons and splash screens from files in a directory
#!/bin/bash
if [[ $# -lt 1 ]] ; then
echo "usage: $0 <dir>"
fi
if [ ! -d $1 ] ; then
echo "directory doesn't exist"
exit 1
fi
@mkorcha
mkorcha / adscl
Last active November 17, 2022 15:32
Android drawable scaling script that uses bc and imagemagick
#!/bin/bash
if [[ $# -lt 3 ]] ; then
echo "usage: $0 <source dir> <output dir> <base dp size>"
exit 1
fi
if [ ! -d $1 ] ; then
echo "source directory doesn't exist"
exit 1