tazpanel view utils/icons.sh @ rev 318

Add some graphics from Tango project for helpers messages and arrows; libtazpanel: add msg() function for message boxes (tip|warn|err|up); add is_installed function to determine if we need show helper msg or not; index & settings: add a pair of helpers; installer: add arrows on buttons.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 01:10:00 2012 +0000 (2012-06-23)
parents efedaf66f864
children
line source
1 #!/bin/sh
2 #
3 # Use imagemagick to convert icon images for TazPanel
4 #
6 STYLE=$1
7 IMAGES=../styles/$STYLE/images
8 SIZE=16x16
10 [ -z "$1" ] && exit 0
11 cd $IMAGES
13 echo ""
14 for i in *.png
15 do
16 echo "convert $i -resize $SIZE $i"
17 convert $i -resize $SIZE $i
18 done
19 echo ""
21 exit 0