aboutsummaryrefslogtreecommitdiff
path: root/images/make-base64.sh
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-18 19:23:02 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-18 19:23:02 +0000
commit322d330eaa8a30017b7a3360ae8d872668d14b32 (patch)
tree6d87d6d88f158e6793a4573f46fe6ff657cf4b4e /images/make-base64.sh
parent99e6d1c910de1f9b31a10977d57d768827f6e8f5 (diff)
refactored buttonbar to be a plugin folder and to load the images directly using current_plugin_loadpath
svn path=/trunk/scripts/guiplugins/buttonbar-plugin/; revision=14667
Diffstat (limited to 'images/make-base64.sh')
-rw-r--r--images/make-base64.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/images/make-base64.sh b/images/make-base64.sh
deleted file mode 100644
index 1bcd742..0000000
--- a/images/make-base64.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-rm images.txt
-touch images.txt
-for file in *.gif; do
- name=`echo $file | sed 's|\.gif||'`
- echo $name
- echo "set ${name}data {" >> images.txt
- uuencode -m $name.gif temp | tail -n +2 | head -n -1 >> images.txt
- echo "}" >> images.txt
- echo "image create photo buttonimage$name -data \$${name}data" >> images.txt
-done