notify-send keeps showing notification for a few second. its option -t specifies the timeout in milliseconds at which to expire the notification.
Can I send a notification which will last until I tell it to end, e.g. by clicking it?
notify-send keeps showing notification for a few second. its option -t specifies the timeout in milliseconds at which to expire the notification.
Can I send a notification which will last until I tell it to end, e.g. by clicking it?
Yes, if you use notify-send -u critical -t 0 the notification will stay on the screen until you click it.
It's unfortunate that the man page doesn't mention this.