summaryrefslogtreecommitdiffstats
path: root/lass/5pkgs
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-11-27 21:51:15 +0100
committerlassulus <lassulus@lassul.us>2022-11-27 21:51:15 +0100
commita4637e2bb15a86bd96faaf75914dc8d0dfcc6294 (patch)
tree8e43ad43f66c337f6ef7015963588a54ee5c9732 /lass/5pkgs
parentdae12b6893a1d28e8bcb1fe3fb9ee8757bbfbed4 (diff)
l: allow piping into sxiv
Diffstat (limited to 'lass/5pkgs')
-rw-r--r--lass/5pkgs/sxiv/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/lass/5pkgs/sxiv/default.nix b/lass/5pkgs/sxiv/default.nix
new file mode 100644
index 00000000..04fc1c3f
--- /dev/null
+++ b/lass/5pkgs/sxiv/default.nix
@@ -0,0 +1,27 @@
+{ nsxiv, writers }:
+
+writers.writeDashBin "sxiv" ''
+ set -efu
+ tmpfile="''${TMPDIR:-/tmp}/nsxiv_pipe_$$"
+ trap 'rm -f -- $tmpfile' EXIT
+
+ if [ "$#" -eq 0 ]; then
+ if [ -t 0 ]; then
+ echo "sxiv: No arguments provided" >&2; exit 1
+ else
+ # Consume stdin and put it in the temporal file
+ cat > "$tmpfile"
+ fi
+ fi
+
+ for arg in "$@"; do
+ # if it's a pipe then drain it to $tmpfile
+ [ -p "$arg" ] && cat "$arg" > "$tmpfile"
+ done
+
+ if [ -s "$tmpfile" ]; then
+ ${nsxiv}/bin/nsxiv -q "$@" "$tmpfile" # -q to silence warnings
+ else
+ ${nsxiv}/bin/nsxiv "$@" # fallback
+ fi
+''