use std::process::{Child, Command}; // Run a shell command without blocking pub fn run_cmd(cmd: &str) -> Option { Command::new(cmd).spawn().ok() }