mutt-wizard

mutt and isync auto-configuration
git clone https://git.awy.one/mutt-wizard
Log | Files | Refs | README | LICENSE

openfile (381B) - View raw


 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}/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