Last active
September 6, 2021 09:15
-
-
Save carsondarling/6217755 to your computer and use it in GitHub Desktop.
Replacement for notify-send to auto-remove notifications for Gnome Shell.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Save this script as /usr/local/bin/notify-send and make sure to chmod +x! | |
# NOTE: This has not been extensively tested, though it does work with | |
# XChat. Let me know if it works with others! | |
# Make all notify-send calls go away after they've popped up | |
/usr/bin/notify-send --hint int:transient:1 $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was wondering how to stop the old messages cluttering the notifications inbox. This does it. Thanks!