#通知 #Termux #Android

termux-notification

使用 termux-notification 显示系统通知

4 个版本

0.1.3 2024年2月9日
0.1.2 2024年2月9日
0.1.1 2024年2月9日
0.1.0 2024年2月9日

#334 in 命令行界面

MIT/Apache

17KB
331

termux-notification

Rust 库,带有类型化的 termux-notification 命令 API,用于显示系统通知。


lib.rs:

显示系统通知。

use std::io;

use termux_notification::TermuxNotification;

fn main() -> io::Result<()> {
  TermuxNotification::new()
    .title("Foo")
    .content("Bar")
    .show()?;
  Ok(())
}

功能标志

  • 回调

无运行时依赖

功能