mutt-wizard

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 55e3bb683c908f9962941ce9f4f6dcacc151291b
parent e4794af679e0d79b222930d034e98ca7116c8ccd
Author: Luke Smith <luke@lukesmith.xyz>
Date:   Mon, 20 May 2019 15:41:03 -0400

portable openfile

Diffstat:
Mbin/openfile | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git 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 &