nofi 0.2.4

A notification daemon for Rofi
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::process;

fn main() {
    match nofi::run() {
        Ok(_) => process::exit(0),
        Err(e) => {
            eprintln!("{e}");
            process::exit(1)
        }
    }
}