pub mod capture;
pub mod monitor;
pub mod session;
use std::process::{Command, Stdio};
pub fn tmux_cmd(args: &[&str]) -> Command {
let mut cmd = Command::new("tmux");
cmd.args(args);
cmd
}
pub fn tmux_silent(args: &[&str]) -> Command {
let mut cmd = Command::new("tmux");
cmd.args(args).stdout(Stdio::null()).stderr(Stdio::null());
cmd
}