You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
312 B

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