]> Softwares of Agnibho - imagecap.git/blob - imagecap
Added license to source code
[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 EDIT="gvim -f";
26 ARG="$(echo $1 | sed "s/^file:\/\///g")";
27 DIR="$(dirname "$ARG")";
28 if [ -n "$ARG" ];then
29 #IMG="$(feh -U "$DIR"|grep "$ARG$")";
30 IMG="$DIR/$(basename "$ARG")";
31 fi
32
33 function update(){
34 TEMP=$(mktemp);
35 exiftool -S -s -b -comment "$1">$TEMP;
36 ls -l $TEMP;
37 $EDIT $TEMP;
38 exiftool -overwrite_original_in_place "-comment<=$TEMP" "$1";
39 rm $TEMP;
40 }
41
42 function view(){
43 if [ -n "$IMG" ];then
44 feh -q --action1 ";$SELF e '%f'" --info "exiftool -S -s -b -comment '%f'" --scale-down --draw-tinted --start-at "$IMG" "$DIR";
45 else
46 feh -q --action1 ";$SELF e '%f'" --info "exiftool -S -s -b -comment '%f'" --scale-down --draw-tinted "$DIR";
47 fi
48 }
49
50 if [ "$1" == "e" ];then
51 update "$2";
52 else
53 view "$1";
54 fi