From dd863b797641e03c2771e27fcfc609bfa4b562c1 Mon Sep 17 00:00:00 2001 From: TalonsOfStealth <88559631+TalonsOfStealth@users.noreply.github.com> Date: Wed, 3 Jun 2026 00:24:00 -0400 Subject: [PATCH] Add files via upload --- internal/dbus.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/dbus.go b/internal/dbus.go index b22d114..a3cf0e9 100644 --- a/internal/dbus.go +++ b/internal/dbus.go @@ -129,8 +129,10 @@ func (n DBusNotify) Notify( "$1\u205F $2", ) - if expire_timeout != -1 { + if expire_timeout > 0 { nf.time_ms = expire_timeout + } else if expire_timeout != -1 { + nf.time_ms = 2147483647 } hyprsock.SendNotification(&nf)