frob-volume 0.1.2

Tool to control system volume
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use fauxpas::*;
use structopt::StructOpt;

use frob_volume::{Opt, run};

fn main() -> Result<()> {
    let opt = Opt::from_args();

    run(&opt)?;

    Ok(())
}