mob 0.4.3

A CLI for mobbing from the comfort of your console
Documentation
1
2
3
4
5
6
7
8
9
10
use errors::Result;
use std::process::{Command, ExitStatus};

pub fn new_window_with_command(command: &str) -> Result<ExitStatus> {
    Command::new("tmux")
        .arg("new-window")
        .arg(command)
        .status()
        .map_err(|error| error.into())
}