~ubuntu-branches/ubuntu/precise/xfwm4/precise-proposed

« back to all changes in this revision

Viewing changes to themes/default/convert2png.sh

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2006-11-09 16:01:08 UTC
  • mto: (3.1.2 lenny) (1.1.22 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20061109160108-oafawc03w3zymdhw
Tags: upstream-4.3.99.2svn+r23785
ImportĀ upstreamĀ versionĀ 4.3.99.2svn+r23785

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
for i in `\ls *.svg`; do 
4
 
    IMAGE=${i%.svg}
5
 
    # inkscape --without-gui --file=$i --export-png=$IMAGE.png
6
 
    rsvg -f png ${i} $IMAGE.png
7
 
done