UNPKG

bond-wm

Version:

An X Window Manager built on web technologies.

8 lines (6 loc) 190 B
import { exec } from "child_process"; export function execCommand(command: string, callback: (output: string) => void) { exec(command, (_error, stdout) => { callback(stdout); }); }