blob: 7d2a7c5417e2b72af976279ccdc71258e6cb3cf9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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
herbe "pre: $pre" &
herbe "post: $post" &
exec herbe " $((post-pre)) new articles" &
fi
|