Add xiwibg function.

This commit is contained in:
David Tomaschik
2019-04-28 18:54:07 -07:00
parent 322358b0f0
commit 006188e07d

View File

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