#!/usr/bin/env bash
#> Run a command in the background, detached from terminal
function runbg {
    nohup "$@" >/dev/null 2>&1 &
}
