From f96ad7773fb4fb89175555812f529d06a78a7bce Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Mon, 29 Apr 2019 18:06:14 -0700 Subject: [PATCH] Fix xiwibg. --- dotfiles/zshrc.d/crouton.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/zshrc.d/crouton.zsh b/dotfiles/zshrc.d/crouton.zsh index ff38ce4..243dbab 100644 --- a/dotfiles/zshrc.d/crouton.zsh +++ b/dotfiles/zshrc.d/crouton.zsh @@ -2,6 +2,6 @@ if command -v xiwi >/dev/null 2>&1; then function xiwibg { local tmpf=$(mktemp) echo Logging to ${tmpf} - nohup xiwi "$@" >${tmpf} 2>&1 & + nohup xiwi "$@" >!${tmpf} 2>&1 & } fi