diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-04-13 21:35:32 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2014-04-13 21:35:32 +0200 |
commit | d8192987285050173636239f4bbfa9725ad0d0b6 (patch) | |
tree | fcbfdbc25ccd1e1858c24935e9ceb47e14ede723 | |
parent | bc67d1a3f0f80e0101f84b0ac0394af5b70b451b (diff) | |
download | bin-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>
-rwxr-xr-x | remote-notify-client.sh | 2 |
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 |