diff options
Diffstat (limited to '.local/bin/openfile')
-rwxr-xr-x | .local/bin/openfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/openfile b/.local/bin/openfile new file mode 100755 index 0000000..cf3c6c3 --- /dev/null +++ b/.local/bin/openfile | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | # Helps open a file with xdg-open from mutt in a external program without weird side effects. | ||
4 | tempdir="${XDG_CACHE_HOME:-$HOME/.cache}/mutt-wizard/files" | ||
5 | file="$tempdir/$(basename "$1")" | ||
6 | [ "$(uname)" = "Darwin" ] && opener="open" || opener="setsid -f xdg-open" | ||
7 | mkdir -p "$tempdir" | ||
8 | cp -f "$1" "$file" | ||
9 | $opener "$file" >/dev/null 2>&1 | ||
10 | find "${tempdir:?}" -mtime +1 -type f -delete | ||