2013-01-10 19:25:49 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-09-16 11:32:59 +02: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 12:22:47 +02:00
|
|
|
# Arguments:
|
2022-05-03 17:34:23 +02:00
|
|
|
# $1: path to image file (as provided by the user)
|
2016-08-06 12:22:47 +02:00
|
|
|
# $2: image width
|
|
|
|
# $3: image height
|
2022-05-03 17:34:23 +02:00
|
|
|
# $4: fully resolved path to the image file
|
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)
|
2016-08-06 12:22:47 +02:00
|
|
|
geometry="${2}x${3}"
|
2013-01-27 18:03:01 +01:00
|
|
|
|
2019-01-01 13:44:59 +01:00
|
|
|
echo "${filesize}${s}${geometry}${s}${filename}"
|
2013-01-10 19:25:49 +01:00
|
|
|
|