summaryrefslogtreecommitdiffstats
path: root/.local/bin/openfile
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/openfile')
-rwxr-xr-x.local/bin/openfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/openfile b/.local/bin/openfile
new file mode 100755
index 0000000..cf3c6c3
--- /dev/null
+++ b/.local/bin/openfile
@@ -0,0 +1,10 @@
1#!/bin/sh
2
3# Helps open a file with xdg-open from mutt in a external program without weird side effects.
4tempdir="${XDG_CACHE_HOME:-$HOME/.cache}/mutt-wizard/files"
5file="$tempdir/$(basename "$1")"
6[ "$(uname)" = "Darwin" ] && opener="open" || opener="setsid -f xdg-open"
7mkdir -p "$tempdir"
8cp -f "$1" "$file"
9$opener "$file" >/dev/null 2>&1
10find "${tempdir:?}" -mtime +1 -type f -delete