diff options
-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 |