tori 0.2.2

The frictionless music player for the terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    if cfg!(target_os = "windows") {
        let mut res = winres::WindowsResource::new();
        res.set_icon("../assets/tori.ico");
        res.compile()?;
    }

    Ok(())
}