#!/bin/sh # Helps open a file with xdg-open from mutt in a external program without weird side effects. tempdir="$HOME/.cache/neomutt/files" file="$tempdir/${1##*/}" mkdir -p "$tempdir" cp -f "$1" "$file" setsid -f xdg-open "$file" >/dev/null 2>&1 find "${tempdir:?}" -mtime +1 -type f -delete