A Simple X Image Viewer
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

image-info 498 B

hace 12 años
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}"