diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2017-11-19 00:30:41 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2017-11-19 00:30:41 +0300 |
commit | b7d6d15b432bb0f00bdbaf1a427a0d16c165fe7b (patch) | |
tree | 6455e8454e28958540c3636f5c076f0fce2e146a /textures/add_img.sh | |
parent | f74e12dc06fe948c7495990ab2a083e19c5c38be (diff) |
Juices and popsicles
Diffstat (limited to 'textures/add_img.sh')
-rwxr-xr-x | textures/add_img.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/textures/add_img.sh b/textures/add_img.sh new file mode 100755 index 0000000..192b387 --- /dev/null +++ b/textures/add_img.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# copy the source images as proper filenames +# then color them with GIMP + +if [ -z "$1" ]; then + echo "(!) usage: ./add_img.sh new_juice_name" +else + echo "(i) adding new juice type ${1}..." + cp "#drinking_glass.png" "${1}.png" + cp "#drinking_glass_inv.png" "${1}_inv.png" + cp "#popsicle.png" "${1}_popsicle.png" +fi
\ No newline at end of file |