Skip to content

notify-send

目录

笔记

notify-send 是一个命令行工具,用于在桌面上显示通知消息。

安装

bash
sudo apt update
sudo apt install libnotify-bin

使用

bash
notify-send "标题" "消息内容"

# 优先级
notify-send -u critical "重要通知" "这个消息很重要。"
notify-send -u normal "普通通知" "这个消息是普通优先级。"
notify-send -u low "低优先级通知" "这个消息是低优先级。"

# 指定图标
notify-send -i /path/to/icon.png "标题" "消息内容"
# 制定系统图标(系统图标在 /usr/share/icons/...)   
notify-send -i dialog-information "标题" "消息内容"

Copyright © 2022 田园幻想乡 浙ICP备2021038778号-1