Plugin for tethered photography
[geeqie.git] / plugins / tethered-photography / geeqie-tethered-photography
1 #!/bin/bash
2
3 # Tethered photography
4 # Requires gphoto2
5 #
6 # If a file already exists with the same name, it is not overwritten, but the
7 # download will not take place.
8 # Auto-rename can be achieved with the --filename option of gphoto2.
9 # In file $HOME/.config/gphoto2/settings, set the option:
10 # gphoto2=filename=<see the manual>
11
12 n=$(ps -e | grep "geeqie-tethered" | wc -l)
13 if [ "$n" -ge 3 ]
14 then
15         exit 0
16 fi
17
18 if ! [ -x "$(command -v gphoto2)" ]
19 then
20         zenity --title="Geeqie tethered photography" --info --width=200 --text="gphoto2 is not installed" 2>/dev/null
21         exit 0
22 fi
23
24 if [ $(gphoto2 --auto-detect | wc -l) -le 2 ]
25 then
26         zenity --error --title="Geeqie tethered photography" --text="No camera detected" --window-icon=/usr/local/share/pixmaps/geeqie.png --width=250 2>/dev/null
27         exit 0
28 fi
29
30 notify-send --expire-time=2000 "$(gphoto2 --auto-detect | sed -n '3p')" --icon=geeqie
31
32 script_dir=$(dirname "$0")
33
34 tmpfile=$(mktemp --tmpdir geeqie_tethered_photography_XXXXXX)
35
36 yes n | gphoto2 --hook-script "$script_dir/"geeqie-tethered-photography-hook-script --capture-tethered >$tmpfile &
37
38 gphoto2_pid=$!
39
40 zenity --question --title="Geeqie tethered photography" --ok-label="Stop" --cancel-label="Show log data" --text="Tethered photography is running.\n\n\nDownloading to folder:\n""$PWD\n\n\nExisting files will not be overwritten,\nbut the download will not take place.\n\n(Use gphoto2 --filename default option\nfor auto-rename on download)" --width=300 --window-icon=/usr/local/share/pixmaps/geeqie.png 2>/dev/null
41
42 if [ $? == 1 ]
43 then
44         zenity --text-info --title="Geeqie tethered photography" --window-icon=/usr/local/share/pixmaps/geeqie.png --ok-label="Stop" --cancel-label="Abort" <$tmpfile 2>/dev/null
45 fi
46
47 kill $gphoto2_pid
48 rm $tmpfile