blob: d25777a3e581651948ad500b441ab38fabb6561c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# paths
# NOTE: make sure to uncomment all these if you change it.
#sfeedpath="$HOME/.sfeed"
#sfeedfile="$sfeedpath/feeds"
#sfeedfilenew="$sfeedfile.new"
# list of feeds to fetch:
feeds() {
# feed <name> <url> [encoding]
feed "codemadness" "http://www.codemadness.nl/blog/rss.xml"
feed "explosm" "http://feeds.feedburner.com/Explosm"
feed "linux kernel" "http://kernel.org/kdist/rss.xml" "iso-8859-1"
feed "phoronix" "http://feeds.feedburner.com/Phoronix"
feed "slashdot" "http://rss.slashdot.org/Slashdot/slashdot"
feed "tweakers" "http://feeds.feedburner.com/tweakers/mixed" "iso-8859-1"
feed "xkcd" "http://xkcd.com/atom.xml"
}
|