Line | |
---|
1 | COLORS="client #6ba4ff musica #ab6eff infantil #fff580 pime #c3c3c3 desktop #74ff97 lite #ffbbf1" |
---|
2 | WIDTH=235 |
---|
3 | HEIGHT=110 |
---|
4 | |
---|
5 | RELEASE=16 |
---|
6 | COPY_PATH="../lmd-manager-gui.install/usr/share/lmd-gui/css/icons/" |
---|
7 | INK=$(type -fp inkscape) |
---|
8 | SVG="lliurex-ltsp.svg" |
---|
9 | DIR=$( cd $( dirname ${BASH_SOURCE[0]} ) && pwd) |
---|
10 | |
---|
11 | do_png(){ |
---|
12 | |
---|
13 | while ((${#})); do |
---|
14 | |
---|
15 | ${INK} ${DIR}/${SVG} -e ${DIR}/llx-${1}${RELEASE}.png -w $WIDTH -h $HEIGHT -b ${2} |
---|
16 | shift 2 |
---|
17 | |
---|
18 | done; |
---|
19 | |
---|
20 | } |
---|
21 | |
---|
22 | move_png(){ |
---|
23 | |
---|
24 | while ((${#})); do |
---|
25 | |
---|
26 | mv ${DIR}/llx-${1}${RELEASE}.png ${DIR}/${COPY_PATH}/ |
---|
27 | shift 2 |
---|
28 | done; |
---|
29 | |
---|
30 | } |
---|
31 | |
---|
32 | [ -z ${INK} ] && exit 1 |
---|
33 | |
---|
34 | do_png $COLORS |
---|
35 | move_png $COLORS |
---|
Note: See
TracBrowser
for help on using the repository browser.