#!/bin/sh DATE_ORIG=`zenity --calendar --text="Date Taken" --title="Tag Pictures" --date-format="%Y:%m:%d"` DATE_DIG=`zenity --calendar --text="Date Digitized" --title="Tag Pictures" --date-format="%Y:%m:%d"` TITLE=`zenity --entry --text="Title" --title="Tag Pictures"` /home/jrblevin/bin/tagpix --preserve --copyright --date $DATE_ORIG --digdate $DATE_DIG --title "$TITLE" $* Content-Type: text/plain; charset=UTF-8 Content-Length: 206 Content-Disposition: inline; filename="thunar_tag_description" Last-Modified: Wed, 19 Now 2008 11:53:28 GMT Expires: Wed, 19 Now 2008 11:58:28 GMT #!/bin/sh for i in $*; do DESCRIPTION=`zenity --entry --width=500 --text="Description for $i:" --title="Tag: Description"` /home/jrblevin/bin/tagpix --preserve --description "$DESCRIPTION" $i done Content-Type: text/plain; charset=UTF-8 Content-Length: 144 Content-Disposition: inline; filename="thunar_tag_key" Last-Modified: Wed, 19 Now 2008 11:53:28 GMT Expires: Wed, 19 Now 2008 11:58:28 GMT #!/bin/sh KEY=`zenity --entry --text="Keywords (comma separated)" --title="Tag Pictures"` /home/jrblevin/bin/tagpix --preserve --key "$KEY" $* Content-Type: text/plain; charset=UTF-8 Content-Length: 129 Content-Disposition: inline; filename="thunar_tag_title" Last-Modified: Wed, 19 Now 2008 11:53:28 GMT Expires: Wed, 19 Now 2008 11:58:28 GMT #!/bin/sh TITLE=`zenity --entry --text="Title" --title="Tag Pictures"` /home/jrblevin/bin/tagpix --preserve --title "$TITLE" $* Content-Type: text/plain; charset=UTF-8 Content-Length: 153 Content-Disposition: inline; filename="thunar_tag_unkey" Last-Modified: Wed, 19 Now 2008 11:53:28 GMT Expires: Wed, 19 Now 2008 11:58:28 GMT #!/bin/sh KEY=`zenity --entry --text="Remove Keywords (comma separated)" --title="Tag Pictures"` /home/jrblevin/bin/tagpix --preserve --unkey "$KEY" $*