qbg to quiet X11

This commit is contained in:
Ville Rantanen
2015-11-18 10:18:08 +02:00
parent aa7de42890
commit 504a87f751

View File

@@ -342,3 +342,8 @@ function _tools-update {
hg pull -u 2>&1
popd > /dev/null
}
function qbg {
# Run a program quiet, and backgrounded
"$@" &> /dev/null &
}