facetimehd_toggle 0.1.1

A FaceTimeHD toggle indicator for Macs running Linux
Documentation
1
2
3
4
5
6
7
8
use std::process::{Command, Child};

// Run the terminal commands
pub fn run_command(program: &str, args: &[&str]) -> Result<Child, std::io::Error> {
    Command::new(program)
        .args(args)
        .spawn()
}