A benefit of running Emacs as a GUI app, is that you can view images from your beloved editor. This is super handy to take a quick peek at any image. Sometimes, I'd like a little more than just viewing the image. I'd like to see basic image details like type, dimensions, and file size. The imagemagickidentify utility is pretty handy for that. identify -format "%m %wx%h %b" path/to/image.png I could easily invoke shell-command for this or even create a dwim-shell-command function (maybe I will...