]> Sergey Matveev's repositories - nnn.git/commitdiff
Add script to resize images in directory
authorArun Prakash Jana <engineerarun@gmail.com>
Sun, 24 Mar 2019 05:37:14 +0000 (11:07 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Sun, 24 Mar 2019 06:21:33 +0000 (11:51 +0530)
user-scripts/README.md
user-scripts/imgresize [new file with mode: 0755]

index 952fce746f4819e9bd8e0d016915f253ce61b263..1bfcbd47535e45b3fd6365271f760e18a89c7b61 100644 (file)
@@ -6,6 +6,7 @@
 | edit | Fuzzy find a file in directory subtree with fzy and edit in vim |
 | fzy | Fuzzy find a file in directory subtree with fzy and open using xdg-open |
 | hexview | view a file in hex; needs xxd and $PAGER |
+| imgresize | Resize images in directory to screen resolution (needs [imgp](https://github.com/jarun/imgp)) |
 | imgur | Upload an image file to imgur |
 | kdeconnect | Send selected files to Android device using kdeconnect-cli |
 | ndiff | File and directory diff for selection using vimdiff |
diff --git a/user-scripts/imgresize b/user-scripts/imgresize
new file mode 100755 (executable)
index 0000000..40b9945
--- /dev/null
@@ -0,0 +1,32 @@
+#!/usr/bin/env sh
+
+# Description: Resize images in a directory to screen resolution with imgp
+# imgp homepage: https://github.com/jarun/imgp
+#
+# Notes:
+# 1. Set res if you don't want to be prompted for desktop resolution every time
+# 2. minsize is set to 1MB by default, adjust it if you want
+# 3. imgp options used:
+#       a - adaptive mode
+#       c - convert PNG to JPG
+#       k - skip images matching specified hres/vres
+#
+# Shell: POSIX compliant
+# Author: Arun Prakash Jana
+
+# set resolution (e.g. 1920x1080)
+res=
+
+# set minimum image size (in bytes) to resize (default: 1MB)
+minsize=1048576
+
+if [ -z "$res" ]; then
+    echo -n "desktop resolution (hxv): "
+    read res
+fi
+
+if [ -z "$res" ]; then
+    if ! [ -z "$minsize" ]; then
+        imgp -ackx "$res" -s "$minsize"
+    fi
+fi