2013-01-10 19:25:49 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2014-01-11 22:47:41 +01:00
|
|
|
# Example for $XDG_CONFIG_HOME/sxiv/exec/image-info
|
2016-08-06 12:22:47 +02:00
|
|
|
# Called by sxiv(1) whenever an image gets loaded.
|
2013-01-27 18:03:01 +01:00
|
|
|
# The output is displayed in sxiv's status bar.
|
2016-08-06 12:22:47 +02:00
|
|
|
# Arguments:
|
|
|
|
# $1: path to image file
|
|
|
|
# $2: image width
|
|
|
|
# $3: image height
|
2013-01-10 19:25:49 +01:00
|
|
|
|
2017-12-07 21:44:40 +01:00
|
|
|
s=" " # field separator
|
2013-02-24 20:04:55 +01:00
|
|
|
|
2016-10-17 20:29:11 +02:00
|
|
|
exec 2>/dev/null
|
|
|
|
|
2015-12-23 10:43:20 +01:00
|
|
|
filename=$(basename -- "$1")
|
|
|
|
filesize=$(du -Hh -- "$1" | cut -f 1)
|
2013-01-10 19:25:49 +01:00
|
|
|
|
2016-08-06 12:22:47 +02:00
|
|
|
geometry="${2}x${3}"
|
2015-12-23 10:43:20 +01:00
|
|
|
tags=$(identify -format '%[IPTC:2:25]' ":$1" | tr ';' ',')
|
2013-01-27 18:03:01 +01:00
|
|
|
|
2013-02-24 20:04:55 +01:00
|
|
|
echo "${filesize}${s}${geometry}${tags:+$s}${tags}${s}${filename}"
|
2013-01-10 19:25:49 +01:00
|
|
|
|