dunst internally stores timeouts in microseconds, in a signed 32 bit integer, which wraps around at 2147484, which corresponds to ~40 minutes. Having timeouts longer than that is not unreasonable, so the wrapping should be fixed.
notify-send -t 2147483 foo
will stay on the screen for 35 minutes, while
notify-send -t 2147484 foo
will use the default (for me, 10s)
Installation info
- Version: Dunst - A customizable and lightweight notification-daemon 1.3.2
- Install type: package
- Distro and version: Fedora 30
dunst internally stores timeouts in microseconds, in a signed 32 bit integer, which wraps around at 2147484, which corresponds to ~40 minutes. Having timeouts longer than that is not unreasonable, so the wrapping should be fixed.
notify-send -t 2147483 foo
will stay on the screen for 35 minutes, while
notify-send -t 2147484 foo
will use the default (for me, 10s)
Installation info