diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-03-25 23:42:35 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-03-25 23:42:35 +0100 |
commit | 87b2d6a95beb8a4f76739cb7e1a8044f3cc70d17 (patch) | |
tree | aff4800d85a232cb105fa28afd7934002af22c84 | |
parent | 858dc35c0eae42bc3d1903d8db2dc5e298740f74 (diff) |
add sxiv image info script
-rwxr-xr-x | .config/sxiv/exec/image-info | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.config/sxiv/exec/image-info b/.config/sxiv/exec/image-info new file mode 100755 index 0000000..303431a --- /dev/null +++ b/.config/sxiv/exec/image-info @@ -0,0 +1,7 @@ +#!/bin/sh +printf "`basename $1`" +printf " " +printf "`date -r "$1"`" +printf " " +printf "$2x$3 (`du -Hh "$1" | cut -f 1`)" + |