2

I want FEH to display image's width and height in bottom-left corner (like: 1920x1080)

But

feh --info "%wx%h"

doesn't work, and terminal says:

sh: 1: 1920x1080: not found
helloyes20
  • 21
  • 2
  • 2
    the feh man page says that the format is `feh --info command` ... try `feh --info "echo %wx%h"` – jsotola Jul 29 '22 at 18:01
  • @jsotola: that works for me. You should turn that into an answer, so it can be properly upvoted and accepted – Zé Loff Jul 23 '23 at 09:24

1 Answers1

3

The feh man page says that the format is

feh --info command

Try

feh --info "echo %wx%h"

https://manpages.org/feh

jsotola
  • 429
  • 1
  • 5
  • 9