2013-01-10 18:25:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2014-01-11 21:47:41 +00:00
|
|
|
# Example for $XDG_CONFIG_HOME/sxiv/exec/image-info
|
2013-01-27 17:03:01 +00:00
|
|
|
# Called by sxiv(1) whenever an image gets loaded,
|
|
|
|
# with the name of the image file as its first argument.
|
|
|
|
# The output is displayed in sxiv's status bar.
|
2013-01-10 18:25:49 +00:00
|
|
|
|
2013-02-24 19:04:55 +00:00
|
|
|
s=" | " # field separator
|
|
|
|
|
2013-01-27 17:03:01 +00:00
|
|
|
filename=$(basename "$1")
|
2013-03-30 11:50:54 +00:00
|
|
|
filesize=$(du -Hh "$1" | cut -f 1)
|
2013-01-10 18:25:49 +00:00
|
|
|
|
2013-01-29 17:45:10 +00:00
|
|
|
geometry=$(identify -format '%wx%h' "$1[0]")
|
2013-01-27 17:03:01 +00:00
|
|
|
|
2014-01-03 15:24:07 +00:00
|
|
|
tags=$(exiv2 -q -P v -g "Iptc.Application2.Keywords" "$1" | tr '\n' ',')
|
2013-02-24 19:04:55 +00:00
|
|
|
tags=${tags%,}
|
2013-01-27 17:03:01 +00:00
|
|
|
|
2013-02-24 19:04:55 +00:00
|
|
|
echo "${filesize}${s}${geometry}${tags:+$s}${tags}${s}${filename}"
|
2013-01-10 18:25:49 +00:00
|
|
|
|