summaryrefslogtreecommitdiff
path: root/lib/openfile
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-01-20 22:52:38 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-01-20 22:52:38 +0900
commitc9e72cfb78f2cc2dd9e3c5f0c49e92255bd2db1a (patch)
treeabc0ac09afbf1b17c5489506a700681936153b5f /lib/openfile
init
Diffstat (limited to 'lib/openfile')
-rwxr-xr-xlib/openfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/openfile b/lib/openfile
new file mode 100755
index 0000000..0f60b10
--- /dev/null
+++ b/lib/openfile
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# Helps open a file with xdg-open from mutt in a external program without weird side effects.
+tempdir="${XDG_CACHE_HOME:-$HOME/.cache}/mutt-wizard/files"
+file="$tempdir/${1##*/}"
+[ "$(uname)" = "Darwin" ] && opener="open" || opener="setsid -f xdg-open"
+mkdir -p "$tempdir"
+cp -f "$1" "$file"
+$opener "$file" >/dev/null 2>&1
+find "${tempdir:?}" -mtime +1 -type f -delete