From 0990cf69678f53eb600679d230bf1a213eb8909d Mon Sep 17 00:00:00 2001 Message-Id: <0990cf69678f53eb600679d230bf1a213eb8909d.1715149506.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 21 Jul 2018 14:29:22 +0100 Subject: [PATCH] bin/disorder-notify: Raise the notification timeout back to 5s. Organization: Straylight/Edgeware From: Mark Wooding I reduced it because it seemed too long when I was testing it, but when you do that you're expecting to see the notification. In reality, what happens is that this thing flickers in the corner of the screen, your eye moves over to it, and then it vanishes just before you can read it properly. This is a little counterproductive. --- bin/disorder-notify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/disorder-notify b/bin/disorder-notify index 7e0bb50..5c9e12d 100755 --- a/bin/disorder-notify +++ b/bin/disorder-notify @@ -12,7 +12,7 @@ sub notify ($$) { "-o", "/org/freedesktop/Notifications", "-m", "org.freedesktop.Notifications.Notify", "--", "DisOrder", "0", "audio-volume-high", - $head, $body, "[]", "{}", "2500"; + $head, $body, "[]", "{}", "5000"; } waitpid $kid, 0; } -- [mdw]