summaryrefslogtreecommitdiffstats
path: root/remote-notify-client.sh
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-07-05 10:35:07 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-07-05 10:35:07 +0200
commited6f1dd19591383de299d0d97ef60829db955d28 (patch)
treedec7ac90fc5a1bbbbbae53645a7afbb8cbd89c50 /remote-notify-client.sh
parentc5b67cb946c69ed7ab09f0f275bbc77c5fbd8584 (diff)
downloadbin-ed6f1dd19591383de299d0d97ef60829db955d28.tar.gz
bin-ed6f1dd19591383de299d0d97ef60829db955d28.tar.xz
remote-notify-client.sh: Set notification app name
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 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