summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-05-20 15:41:03 -0400
committerLuke Smith <luke@lukesmith.xyz>2019-05-20 15:41:03 -0400
commit55e3bb683c908f9962941ce9f4f6dcacc151291b (patch)
treedcf0f1dd390c45c2468a132e11810aab03851fd7 /bin
parente4794af679e0d79b222930d034e98ca7116c8ccd (diff)
portable openfile
Diffstat (limited to 'bin')
-rwxr-xr-xbin/openfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/openfile b/bin/openfile
index a3163f3..e530b3e 100755
--- a/bin/openfile
+++ b/bin/openfile
@@ -1,9 +1,8 @@
#!/bin/sh
# Helps open a file with xdg-open from mutt in a external program without weird side effects.
[ $(uname) = "Darwin" ] && opener="open" || opener="setsid xdg-open"
-base=$(basename "$1")
-ext="${base##*.}"
-file=$(mktemp -u --suffix=".$ext")
+mkdir -p "/tmp/$USER-mutt-tmp"
+file="/tmp/$USER-mutt-tmp/$(basename "$1")"
rm -f "$file"
cp "$1" "$file"
$opener "$file" >/dev/null 2>&1 &