summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2022-04-30 09:57:57 -0400
committerLuke Smith <luke@lukesmith.xyz>2022-04-30 09:57:57 -0400
commit4911a7eff3471a144f7ea590bf6936cbd51d5689 (patch)
tree54ce13a98e5154c0483b996b1e5e2df5b2758a2e /lib
parentdcbaab19aa502a0d049f6045b18f567ce16bf20f (diff)
openfile to lib
Diffstat (limited to 'lib')
-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