12 lines
483 B
Nim
12 lines
483 B
Nim
from std/osproc import startProcess, ProcessOption, waitForExit, close
|
|
from std/os import fileExists
|
|
|
|
proc runCommand*(command: string, args: openArray[string]): int =
|
|
## This will run a command with the given args and return its exit code upon completion
|
|
let process = startProcess(command, args=args, options={poParentStreams})
|
|
result = process.waitForExit()
|
|
process.close()
|
|
|
|
proc isGlobalMenuEnabled*(): bool =
|
|
return fileExists("/usr/lib/vala-panel/appmenu-registrar")
|