view plugins/tethered-photography/geeqie-tethered-photography-hook-script @ 2856:8521d2405863

Plugin for tethered photography Basic tethered photography using gphoto2
author Colin Clark <colin.clark@cclark.uk>
date Tue, 23 Oct 2018 19:44:36 +0100
parents
children
line wrap: on
line source

#!/bin/bash

# Tethered photography

if [ "$ACTION" == "download" ]
then
	notify-send --expire-time=4000 "$ARGUMENT"  --icon=geeqie
	geeqie --remote File:"$PWD/$ARGUMENT"
fi

exit 0