Files
skel/dotfiles/zshrc.d/crouton.zsh
David Tomaschik f96ad7773f Fix xiwibg.
2019-04-29 18:06:14 -07:00

8 lines
158 B
Bash

if command -v xiwi >/dev/null 2>&1; then
function xiwibg {
local tmpf=$(mktemp)
echo Logging to ${tmpf}
nohup xiwi "$@" >!${tmpf} 2>&1 &
}
fi