cmustify 1.0.0

Show desktop notification with cmus information
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate cmustify;

use std::env;
use cmustify::{DbusNotifier, run};

fn main() {
    let args: Vec<String> = env::args().skip(1).collect();
    let cmus_data = args.join(" ");
    let notifier = DbusNotifier{};
    run(&notifier, cmus_data);
}