lubuntu 通知发送未从会话开始

lubuntu 通知发送未从会话开始

我会尝试在 lubuntu 20.04 中向我发送文本提醒。我的自动启动 ($HOME/.config/autostart) 中有 2 个,一个有效,另一个无效。

工作执行位于 /usr/local/bin/ 中的 bash-skript,然后在 $HOME/.config/autostart/ 下创建一个桌面文件

cat .config/autostart/firefox-hold.desktop 
[Desktop Entry]
Exec=/usr/bin/notify-send "firefox auf hold gesetzt"
Name=firefox-hold
Type=Application
OnlyShowIn=LXQt;
Version=1.0

我激活它

lxqt-config-session

查看 .xsession-errors

+ /usr/bin/notify-send -i /usr/share/icons/gnome/48x48/status/dialog-warning.png Warnung 'home voll' # the working one

从第二个

notify-send \"firefox auf hold gesetzt\" #looks strange

在终端中该命令notify-send "firefox auf hold gesetzt"有效。

答案1

我无法解释为什么在将我的文件更改为后它现在可以正常工作

cat .config/autostart/firefox-hold.desktop 
[Desktop Entry]
Exec=/usr/bin/notify-send "firefox auf hold gesetzt"
Name=firefox-hold
Type=Application
Version=1.0
#OnlyShowIn=LXQt 
X-LXQt-Need-Tray=true

现在我收到了提醒

[2022-01-18-13-08-34-593]
Actions=@Invalid()
Application=notify-send
Body=
Hints=@Variant(\0\0\0\b\0\0\0\x1\0\0\0\xe\0u\0r\0g\0\x65\0n\0\x63\0y\0\0\0\x86\x1)
Icon=
Summary=firefox auf hold gesetzt
TimeOut=5000

作为气泡和在 lxqt-notificationd 中

相关内容