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 40caac5..7105756 100755 --- a/remote-notify-client.sh +++ b/remote-notify-client.sh @@ -7,6 +7,6 @@ exec 0<&- sup ssh -o BatchMode=yes caju 'socat unix-connect:notify.sock stdout' | while read heading message; do if [[ -n $heading ]]; then - notify-send --hint=int:transient:1 -t 5000 -- "${heading}" "${message}"; + notify-send --hint=int:transient:1 -c "weechat" --app-name "weechat" -t 5000 -- "${heading}" "${message}"; fi done |