dotfiles/.config/nsxiv/exec/image-info

14 lines
226 B
Plaintext
Raw Normal View History

2024-08-01 16:06:21 -04:00
#!/bin/sh
exec 2>/dev/null
file_name="${4##*/}"
while IFS="$(printf '\t')" read -r size _; do
file_size="$size"
done <<EOF
$(du -Hh "$4")
EOF
geometry="$2x$3"
printf '%s | %s | %s' "$file_name" "$file_size" "$geometry"