mirror of
https://github.com/Matir/skel.git
synced 2026-06-10 11:13:40 -07:00
8 lines
158 B
Bash
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
|