blob: c7281bef18fce060cf8c24b71c310dc6947a15f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
#pgrep irssi_notify.sh && exit
#tail -f $HOME/.irssi/fnotify |
ssh mistral 'inotail -f -n 0 ~/.irssi/fnotify' |
sed -ru "
s/&/\&/g;
s/</\</g;
s/>/\>/g;
s%(#[a-zA-Z]+ )<([^>]{0,10})>%\1<b>\2</b> %g
s%(https?://[^ ]+\.[a-zA-Z]{1,3})%<a href=\"\1\">\1</a>%g;
s%([a-zA-Z0-9+_-]+@[^ ]+\.[a-zA-Z]{1,3})%<a href=\"mailto:\1\">\1</a>%g;" |
while read heading message
do
if [ "X$heading" != "X" ]; then
ssh mistral 'echo "" > ~/.irssi/fnotify';
ossplay ~/misc/High_Bee-Public_D-135.wav
notify-send -t 5000 -- "${heading}" "${message}";
fi
done
|