noti
监控进程并触发通知。
不用再坐着等待某个长时间运行的进程完成。Noti 可以在进程完成时通知你。你可以在电脑或手机上接收消息。
服务
Noti 可以在多个服务上发送通知。
服务 | macOS | Linux | Windows |
---|---|---|---|
横幅 | ✔ | ✔ | ✔ |
语音 | ✔ | ✔ | ✔ |
BearyChat | ✔ | ✔ | ✔ |
Keybase | ✔ | ✔ | ✔ |
Mattermost | ✔ | ✔ | ✔ |
Pushbullet | ✔ | ✔ | ✔ |
Pushover | ✔ | ✔ | ✔ |
Pushsafer | ✔ | ✔ | ✔ |
Simplepush | ✔ | ✔ | ✔ |
Slack | ✔ | ✔ | ✔ |
Telegram | ✔ | ✔ | ✔ |
Zulip | ✔ | ✔ | ✔ |
Twilio | ✔ | ✔ | ✔ |
GChat | ✔ | ✔ | ✔ |
Chanify | ✔ | ✔ | ✔ |
查看截图目录以了解不同平台上通知的外观。
安装
使用以下命令安装 Go 二进制文件。
# macOS 通过 Brew 安装
brew install noti
# macOS 通过 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 通过 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
或者从最新发布页面通过浏览器下载。
从源码安装
如果你想从源码构建,请按以下方式操作。
# 构建二进制文件
make build
# 构建二进制文件并移动到 Go bin 目录
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
可以通过管道从标准输入发送消息,使用 -
。
$ make test 2>&1 | tail --lines 5 | noti -t "测试结果" -m -