aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/mutt-open
blob: e8adbb9d7b4a1e4ade6d00ef8dfdb09925bc572e (plain)
1
2
3
4
5
6
7
8
9
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}/mail/files"
file="$tempdir/$(basename "$1")"
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