aboutsummaryrefslogtreecommitdiff
path: root/textures/add_img.sh
blob: 192b3870700076727b1b560052b7ff375ee00917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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