diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-07-05 10:35:07 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-05 10:35:07 +0200 |
commit | ed6f1dd19591383de299d0d97ef60829db955d28 (patch) | |
tree | dec7ac90fc5a1bbbbbae53645a7afbb8cbd89c50 | |
parent | c5b67cb946c69ed7ab09f0f275bbc77c5fbd8584 (diff) | |
download | bin-ed6f1dd19591383de299d0d97ef60829db955d28.tar.gz bin-ed6f1dd19591383de299d0d97ef60829db955d28.tar.xz |
remote-notify-client.sh: Set notification app name
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 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 |