]> Softwares of Agnibho - imagecap.git/blob - imagecap
Use zenity to edit text
[imagecap.git] / imagecap
1 #! /bin/bash
2
3 # Copyright (c) 2017 Agnibho Mondal
4 # All rights reserved
5 #
6 # This file is part of ImageCap.
7 #
8 # ImageCap is free software: you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation, either version 3 of the License, or (at your option) any later
11 # version.
12 #
13 # ImageCap is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
15 # PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # ImageCap. If not, see <http://www.gnu.org/licenses/>.
19 #
20 # Agnibho Mondal
21 # contact@agnibho.com
22 # www.agnibho.com
23
24 SELF="$(realpath "$0")";
25 ARG="$(echo $1 | sed "s/^file:\/\///g")";
26 DIR="$(dirname "$ARG")";
27 if [ -n "$ARG" ];then
28 IMG="$DIR/$(basename "$ARG")";
29 fi
30
31 function update(){
32 DATA=$(exiftool -S -s -b -comment "$1");
33 DATA=$(echo -n "$DATA"|zenity --text-info --editable --title="Edit Caption" --ok-label="Update");
34 if [ "$?" = "0" ];then
35 exiftool -overwrite_original_in_place -comment="$DATA" "$1";
36 fi
37 }
38
39 function view(){
40 if [ -n "$IMG" ];then
41 feh -q --action1 ";$SELF -e '%f'" --info "exiftool -S -s -b -comment '%f'" --scale-down --draw-tinted --start-at "$IMG" "$DIR";
42 else
43 feh -q --action1 ";$SELF -e '%f'" --info "exiftool -S -s -b -comment '%f'" --scale-down --draw-tinted "$DIR";
44 fi
45 }
46
47 if [ "$1" == "-e" ];then
48 update "$2";
49 else
50 view "$1";
51 fi