]> Softwares of Agnibho - imagecap.git/blobdiff - imagecap
Use zenity to edit text
[imagecap.git] / imagecap
index a5a8f1231ef63d63907b85a0b902a9e99e88c00d..eec547e6f81eae4e185b68308471cde6b21642fb 100755 (executable)
--- a/imagecap
+++ b/imagecap
@@ -29,12 +29,11 @@ if [ -n "$ARG" ];then
 fi
 
 function update(){
-       TEMP=$(mktemp);
-       exiftool -S -s -b -comment "$1">$TEMP;
-       ls -l $TEMP;
-       xdg-open $TEMP;
-       exiftool -overwrite_original_in_place "-comment<=$TEMP" "$1";
-       rm $TEMP;
+       DATA=$(exiftool -S -s -b -comment "$1");
+       DATA=$(echo -n "$DATA"|zenity --text-info --editable --title="Edit Caption" --ok-label="Update");
+       if [ "$?" = "0" ];then
+               exiftool -overwrite_original_in_place -comment="$DATA" "$1";
+       fi
 }
 
 function view(){