我找不到可以更改 Gnome Shell 通知设置的位置。我单击了通知上带有“不再显示”(或类似内容)标签的按钮,现在当该通知出现时,它永远不会消失,除非我单击该按钮。
Gnome Shell 通知的配置窗口在哪里?
答案1
目前还没有办法轻松配置 gnome-shell 通知。您可以禁用它们或将它们配置为超时。
dconf-editor 允许您配置一些设置
sudo apt-get install dconf-editor
dconf-editor
您还可以进行修改,notify-send
以使消息成为暂时的。
# Move the current script to a backup location
sudo mv /usr/bin/notify-send /usr/bin/notify-send.bak
现在,使用 gedit 创建一个新包装脚本
gksu gedit /usr/bin/notify-send
将其复制粘贴到该文件中
#!/bin/bash
/usr/bin/notify-send --hint int:transient:1 "$@"
保存脚本,退出 gedit,并使其可执行
sudo chmod a+x /usr/bin/notify-send
也可以看看此论坛帖子以获取更多建议。