-
-
Save mattn/135979 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
USER=mattn | |
LAST=0 | |
while true; do | |
CURRENT=`curl -s http://rpc.reader.livedoor.com/notify?user=$USER | sed 's/^|\([0-9]\+\)|.*/\1/'` | |
if [ $LAST -lt $CURRENT ]; then | |
notify-send "livedoor Reader Notifier" "$CURRENT 件の未読記事があります。" | |
fi | |
LAST=$CURRENT | |
sleep 180 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment