通知发送不起作用,似乎有很多错误

通知发送不起作用,似乎有很多错误

我正在尝试创建通知脚本,但它不起作用。
当我单击例如“control+alt+m”时,它应该会弹出通知,但它就像默认设置一样,我无法更改任何内容。
我尝试使用一些命令进行通知发送,但它不起作用。
还有一个更大的问题是它不能在全屏模式下工作,就像我在游戏中一样,我想单击“control+alt+m”,但它没有显示。
我什么也做不了,我试图写 -critical 仍然不起作用。需要通知方面的帮助。

这是我的脚本:

#!/bin/bash
notify-send "Dota2 Heroes" -t 10000

PS 默认时间为 5 秒,-t 10000 = 10 秒,但它不起作用,通知会在 5 秒内消失

答案1

答案很简单:

Ubuntu 的 Notify OSD 和 GNOME Shell 都忽略此参数。

打开手册页

man notify-send

你可以阅读以下内容:

-t, --expire-time=TIME
      The duration, in milliseconds, for the notification to appear on
      screen. (Ubuntu's Notify OSD and GNOME Shell both ignore this
      parameter.)

相关内容