twm 0.2.0

A customizable workspace manager for tmux
Documentation
1
2
3
4
5
6
7
use anyhow::Result;
use twm::cli;

fn main() -> Result<()> {
    cli::parse()?;
    Ok(())
}