A Simple X Image Viewer
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

image-info 498 B

12345678910111213141516171819
  1. #!/bin/sh
  2. # Example for ~/.sxiv/exec/image-info
  3. # Called by sxiv(1) whenever an image gets loaded,
  4. # with the name of the image file as its first argument.
  5. # The output is displayed in sxiv's status bar.
  6. s=" | " # field separator
  7. filename=$(basename "$1")
  8. filesize=$(du -Hh "$1" | cut -f 1)
  9. geometry=$(identify -format '%wx%h' "$1[0]")
  10. tags=$(exiv2 -q -P v -g "Iptc.Application2.Keywords" "$1" | tr '\n' ',')
  11. tags=${tags%,}
  12. echo "${filesize}${s}${geometry}${tags:+$s}${tags}${s}${filename}"