summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-05-01 20:37:12 -0400
committerLuke Smith <luke@lukesmith.xyz>2019-05-01 20:37:12 -0400
commit123351045e1030bfd2dbb06aafde701c1c2cb5e1 (patch)
tree9dd7e387b7b95742e96b1c27c0664424e19d210c
parented6ed5854aadc6cc1440e2a7b7b3d70aaa56ae00 (diff)
open files with mac
-rwxr-xr-xbin/openfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/openfile b/bin/openfile
index 19cb077..a3163f3 100755
--- a/bin/openfile
+++ b/bin/openfile
@@ -1,8 +1,9 @@
#!/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")
rm -f "$file"
cp "$1" "$file"
-setsid xdg-open "$file" >/dev/null 2>&1 &
+$opener "$file" >/dev/null 2>&1 &