diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-08-17 02:31:03 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-08-17 02:31:31 +0200 |
commit | a2059b5cfaa600402dfbec5d63099fd724998e9f (patch) | |
tree | f2565560aebd6e090eb581ad751a1c2adba9ad0a /nekowatchlet/res | |
parent | 9c44782c5eab5635ca6adf4717409bf2ffb6c694 (diff) | |
download | sowatch-a2059b5cfaa600402dfbec5d63099fd724998e9f.tar.gz sowatch-a2059b5cfaa600402dfbec5d63099fd724998e9f.zip |
cleaning up old file
Diffstat (limited to 'nekowatchlet/res')
-rw-r--r-- | nekowatchlet/res/makeatlas.sh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/nekowatchlet/res/makeatlas.sh b/nekowatchlet/res/makeatlas.sh deleted file mode 100644 index 60449ae..0000000 --- a/nekowatchlet/res/makeatlas.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -set -e - -allfiles=$(echo *.png | sort) -atlasfiles="" -stems="" - -for i in $allfiles -do - echo $i - if [[ $i =~ ^([a-z]+)[1-9].png ]] - then - stem=${BASH_REMATCH[1]} - output=$stem.png.tmp - if [[ $atlasfiles != *$output* ]] - then - montage $stem?.png -geometry 32x32 $output - atlasfiles="$atlasfiles $output" - stems="$stems $stem" - fi - fi -done - -montage $atlasfiles -geometry 64x32+0+0 -gravity NorthWest -tile 1x atlas.png - -rm -f $atlasfiles - -echo $stems | tr ' ' '\n' > atlas.txt - -exit 0 - |