aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-12-21 01:52:47 +0300
committerYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-12-21 01:52:47 +0300
commitbdce2cfb10a204042a35cf574669cb46950e679f (patch)
tree88c1694b469dd6d69fd37a45bc3d1047c9b489eb /dotfiles/.local/bin
parent8ee1282b5e364f7fa19f0631489b1f74b7525a95 (diff)
downloadswayrice-bdce2cfb10a204042a35cf574669cb46950e679f.tar.gz
swayrice-bdce2cfb10a204042a35cf574669cb46950e679f.zip
Switch to nsxiv as main image viewer
sxiv is no longer maintained.
Diffstat (limited to 'dotfiles/.local/bin')
-rwxr-xr-xdotfiles/.local/bin/nsxiv-rifle29
1 files changed, 29 insertions, 0 deletions
diff --git a/dotfiles/.local/bin/nsxiv-rifle b/dotfiles/.local/bin/nsxiv-rifle
new file mode 100755
index 0000000..95d6423
--- /dev/null
+++ b/dotfiles/.local/bin/nsxiv-rifle
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+if [ $# -eq 0 ]; then
+ echo "Usage: ${0##*/} PICTURES"
+ exit
+fi
+
+[ "$1" = '--' ] && shift
+
+abspath () {
+ case "$1" in
+ /*) printf "%s\n" "$1";;
+ *) printf "%s\n" "$PWD/$1";;
+ esac
+}
+
+listfiles () {
+ find -L "$(dirname "$target")" -maxdepth 1 -type f -iregex \
+ '.*\(jpe?g\|bmp\|webp\|png\|gif\)$' -print0 | sort -z
+}
+
+target="$(abspath "$1")"
+count="$(listfiles | grep -m 1 -ZznF "$target" | cut -d: -f1)"
+
+if [ -n "$count" ]; then
+ listfiles | xargs -0 nsxiv -a -n "$count" --
+else
+ nsxiv -a -- "$@" # fallback
+fi