aboutsummaryrefslogtreecommitdiff
path: root/textures/add_img.sh
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2017-11-19 00:30:41 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2017-11-19 00:30:41 +0300
commitb7d6d15b432bb0f00bdbaf1a427a0d16c165fe7b (patch)
tree6455e8454e28958540c3636f5c076f0fce2e146a /textures/add_img.sh
parentf74e12dc06fe948c7495990ab2a083e19c5c38be (diff)
downloadfreezer-b7d6d15b432bb0f00bdbaf1a427a0d16c165fe7b.tar.gz
freezer-b7d6d15b432bb0f00bdbaf1a427a0d16c165fe7b.tar.bz2
freezer-b7d6d15b432bb0f00bdbaf1a427a0d16c165fe7b.zip
Juices and popsicles
Diffstat (limited to 'textures/add_img.sh')
-rwxr-xr-xtextures/add_img.sh13
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