File: windows.rs

package info (click to toggle)
rust-notify-rust 4.11.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 604 kB
  • sloc: sh: 18; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 261 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
extern crate notify_rust;
use notify_rust::Notification;

fn main() {
    Notification::new()
        .summary("Notify Rust Windows")
        .body("yay, we have limited windows support\nWith multiple lines\nSound\nImages")
        .show()
        .unwrap();
}