Browse Source

portable openfile

tags/v3.1
Luke Smith 5 years ago
parent
commit
55e3bb683c
No known key found for this signature in database GPG Key ID: 4C50B54A911F6252
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      bin/openfile

+ 2
- 3
bin/openfile View File

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

Loading…
Cancel
Save