From d8192987285050173636239f4bbfa9725ad0d0b6 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 13 Apr 2014 21:35:32 +0200 Subject: remote-notify-client.sh: mark notify as transient Otherwise gnome won't remove them after the timeout. Signed-off-by: Florian Pritz --- remote-notify-client.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'remote-notify-client.sh') diff --git a/remote-notify-client.sh b/remote-notify-client.sh index a95c9e7..5bcca11 100755 --- a/remote-notify-client.sh +++ b/remote-notify-client.sh @@ -7,6 +7,6 @@ exec 0<&- sup ssh mistral 'socat unix-connect:notify.sock stdout' | while read heading message; do if [[ -n $heading ]]; then - notify-send -t 5000 -- "${heading}" "${message}"; + notify-send --hint=int:transient:1 -t 5000 -- "${heading}" "${message}"; fi done -- cgit v1.2.3-24-g4f1b