noti
3.7.0
监视进程并触发通知。
永远不要坐下来等待某些长时间运行的进程完成。 Noti 可以在完成后提醒您。您可以在计算机或手机上接收消息。
Noti 可以发送有关多种服务的通知。
服务 | macOS | Linux | 视窗 |
---|---|---|---|
横幅 | ✔ | ✔ | ✔ |
演讲 | ✔ | ✔ | ✔ |
熊聊 | ✔ | ✔ | ✔ |
密钥库 | ✔ | ✔ | ✔ |
最重要的 | ✔ | ✔ | ✔ |
推子弹 | ✔ | ✔ | ✔ |
推倒 | ✔ | ✔ | ✔ |
普斯安全 | ✔ | ✔ | ✔ |
简单推送 | ✔ | ✔ | ✔ |
松弛 | ✔ | ✔ | ✔ |
电报 | ✔ | ✔ | ✔ |
祖利普 | ✔ | ✔ | ✔ |
特威利奥 | ✔ | ✔ | ✔ |
聊天室 | ✔ | ✔ | ✔ |
查尼菲 | ✔ | ✔ | ✔ |
检查屏幕截图目录以查看通知在不同平台上的外观。
使用这些命令安装 Go 二进制文件。
# macOS install with Brew
brew install noti
# macOS install with curl
curl -L $( curl -s https://api.github.com/repos/variadico/noti/releases/latest | awk ' /browser_download_url/ { print $2 } ' | grep ' darwin-amd64 ' | sed ' s/"//g ' ) | tar -xz
# Linux install with curl
curl -L $( curl -s https://api.github.com/repos/variadico/noti/releases/latest | awk ' /browser_download_url/ { print $2 } ' | grep ' linux-amd64 ' | sed ' s/"//g ' ) | tar -xz
或者使用浏览器从最新版本页面下载。
如果您想从源代码构建,请像这样构建。
# build binary
make build
# build binary and move to Go bin dir
make install
只需将noti
放在常规命令的开头或结尾即可。有关更多详细信息,请查看文档。
tar
完成压缩文件时显示通知。
noti tar -cjf music.tar.bz2 Music/
在命令后添加noti
,以防您一开始就忘记了。
clang foo.c -Wall -lm -L/usr/X11R6/lib -lX11 -o bizz ; noti
如果您已经启动了命令但忘记使用noti
,那么您可以执行此操作,以便在该进程的 PID 消失时收到通知。
noti --pwatch 1234
您也可以在启动进程后按ctrl+z
。这将暂时挂起该过程,但您可以使用noti
恢复它。
$ dd if=/dev/zero of=foo bs=1M count=2000
^Z
zsh: suspended dd if=/dev/zero of=foo bs=1M count=2000
$ fg; noti
[1] + continued dd if=/dev/zero of=foo bs=1M count=2000
2000+0 records in
2000+0 records out
2097152000 bytes (2.1 GB, 2.0 GiB) copied, 12 s, 175 MB/s
此外, noti
可以使用-
发送从 stdin 管道传输的消息。
$ make test 2>&1 | tail --lines 5 | noti -t " Test Results " -m -