UNPKG
bond-wm
Version:
latest (0.8.0)
0.8.0
0.7.0
0.6.1
0.6.0
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
An X Window Manager built on web technologies.
github.com/wnayes/bond-wm
wnayes/bond-wm
bond-wm
/
exec.ts
8 lines
(6 loc)
•
190 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ exec }
from
"child_process"
;
export
function
execCommand
(
command
:
string
,
callback
: (output:
string
) =>
void
) {
exec
(command,
(
_error, stdout
) =>
{
callback
(stdout); }); }