Some scripts I wrote show notifications like "Volume up" or "Reset brightness" for example, using notify-send. However, the notifications get saved in the notification menu on Ubuntu 18.04, which I don't want since there are so many repeats. How do I prevent that?
Here's what I tried:
- Checked
man notify-sendbut didn't see any options about not saving the notification. notify-send --urgency=low- no difference- Researched "gnome toast notifications" but apparently they're application-specific, which doesn't work for me
- Considered using Zenity but I couldn't find a way to make a notification that doesn't steal focus.
- In Python, making a
Notify.notificationobject.show()twice - no difference