summaryrefslogtreecommitdiffstats
path: root/remote-notify-client.sh
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-04-13 21:35:32 +0200
committerFlorian Pritz <bluewind@xinu.at>2014-04-13 21:35:32 +0200
commitd8192987285050173636239f4bbfa9725ad0d0b6 (patch)
treefcbfdbc25ccd1e1858c24935e9ceb47e14ede723 /remote-notify-client.sh
parentbc67d1a3f0f80e0101f84b0ac0394af5b70b451b (diff)
downloadbin-d8192987285050173636239f4bbfa9725ad0d0b6.tar.gz
bin-d8192987285050173636239f4bbfa9725ad0d0b6.tar.xz
remote-notify-client.sh: mark notify as transient
Otherwise gnome won't remove them after the timeout. Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'remote-notify-client.sh')
-rwxr-xr-xremote-notify-client.sh2
1 files changed, 1 insertions, 1 deletions
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