rewrite underway

This commit is contained in:
Luke Smith
2019-02-21 10:14:17 -05:00
parent f2dcd92c30
commit 03279ea318
24 changed files with 324 additions and 533 deletions

9
bin/openfile Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
# Helps open a file with xdg-open from mutt in a external program without weird side effects.
base=$(basename "$1")
ext="${base##*.}"
file=$(mktemp -u --suffix=".$ext")
rm -f "$file"
cp "$1" "$file"
setsid xdg-open "$file" >/dev/null 2>&1 &