blob: 3982bc9e1bca0cb547a82a76bf734ab17903aa55 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
pre=$(wc -l --total=only $XDG_DATA_HOME/sfeed/feeds/*)
sfeed_update $XDG_CONFIG_HOME/sfeed/sfeedrc >/dev/null 2>1
post=$(wc -l --total=only $XDG_DATA_HOME/sfeed/feeds/*)
if [ $post -gt $pre ]; then
exec herbe " $((post-pre)) new articles" &
fi
|