mutt-wizard

fork of Luke Smiths mutt-wizard
git clone git://git.jakekoroman.com/mutt-wizard
Log | Files | Refs | README | LICENSE

commit ff2a8882127f46f811dd73d2ef08bd99df6438f8
parent 042a0d2b4c66627a1f600000667df340261e1b1c
Author: Luke Smith <luke@lukesmith.xyz>
Date:   Thu, 11 Oct 2018 14:48:40 -0400

no show errors, duplicate handling

Diffstat:
Metc/htmlopen.sh | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/etc/htmlopen.sh b/etc/htmlopen.sh @@ -4,7 +4,8 @@ file=$(mktemp -u --suffix=.html) -echo $file +rm -f "$file" + cp "$1" "$file" -setsid firefox "$file" & +setsid firefox "$file" >/dev/null 2>&1 &