消息文本(正文):body="Text body of the notification message, text, text, text"
图标(来自图标名称):icon="icon-name"
要出现的角,1 = NE,2 = NW,3 = SE,4 = SW:position=1
一个完整的命令可能如下所示:
/path/to/alternotify.py title="Missing applet" body="To use this functionality, you need to run previews. Click this notification to switch it on." icon="budgie-hotcorners-symbolic" command="gedit /home/jacob/Bureaublad/Kap" position=4
有趣的问题!
...这是在UB 实验性回购中探索以下主题的触发因素。结果是一个通知/消息弹出窗口,它具有以下选项:
具有(可选)点击功能的通知示例
前四个选项仅在您设置参数时适用,角默认为右下角(在主要位置),除非设置不同。
生命长度是硬编码的,默认为 10 秒,除非设置不同。
笔记
dbus
,因此无法“收听”它们。进一步的发展可能是使它成为一个类似守护进程的后台进程——保持 Gtk 循环活着——,只在 dbus 提示上调用窗口。如何设置
alternotify.py
,使其可执行使用以下选项的任意组合运行它,只需选择您需要的:
command="command_to_run"
title="Title to show"
body="Text body of the notification message, text, text, text"
icon="icon-name"
position=1
一个完整的命令可能如下所示:
编码