2013-01-10 18:25:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-09-16 10:32:59 +01:00
|
|
|
# Example for $XDG_CONFIG_HOME/nsxiv/exec/image-info
|
|
|
|
# Called by nsxiv(1) whenever an image gets loaded.
|
|
|
|
# The output is displayed in nsxiv's status bar.
|
2016-08-06 11:22:47 +01:00
|
|
|
# Arguments:
|
2022-05-03 16:34:23 +01:00
|
|
|
# $1: path to image file (as provided by the user)
|
2016-08-06 11:22:47 +01:00
|
|
|
# $2: image width
|
|
|
|
# $3: image height
|
2022-05-03 16:34:23 +01:00
|
|
|
# $4: fully resolved path to the image file
|
2013-01-10 18:25:49 +00:00
|
|
|
|
2017-12-07 20:44:40 +00:00
|
|
|
s=" " # field separator
|
2013-02-24 19:04:55 +00:00
|
|
|
|
2016-10-17 19:29:11 +01:00
|
|
|
exec 2>/dev/null
|
|
|
|
|
2015-12-23 09:43:20 +00:00
|
|
|
filename=$(basename -- "$1")
|
|
|
|
filesize=$(du -Hh -- "$1" | cut -f 1)
|
2016-08-06 11:22:47 +01:00
|
|
|
geometry="${2}x${3}"
|
2013-01-27 17:03:01 +00:00
|
|
|
|
2019-01-01 12:44:59 +00:00
|
|
|
echo "${filesize}${s}${geometry}${s}${filename}"
|
2013-01-10 18:25:49 +00:00
|
|
|
|