summaryrefslogtreecommitdiffstats
path: root/remote-notify-client.sh
blob: 7105756d3565edab4196f6a4b7df3e176999e7b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

[[ -z $DISPLAY ]] && exit 1;

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 -c "weechat" --app-name "weechat" -t 5000 -- "${heading}" "${message}";
		fi
	done