sfeedrc - dotfiles - These are my dotfiles. There are many like it, but these are mine.
 (HTM) git clone git://jay.scot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       sfeedrc (1932B)
       ---
            1 sfeedpath="$HOME/.config/sfeed/feeds"
            2 
            3 fetch() {
            4         case "$2" in
            5         *.gmi | 'gemini:'*)
            6                 gemget -o - "$2"
            7                 ;;
            8         *)
            9                 curl "$2" 2>/dev/null
           10                 ;;
           11         esac
           12 }
           13 
           14 feeds() {
           15         # general
           16         feed 'tildenews' 'https://tilde.news/newest.rss'
           17         feed 'tvtorrents' 'https://showrss.info/other/all.rss'
           18         feed 'gamingonlinux' 'https://www.gamingonlinux.com/article_rss.php'
           19         feed 'bearblogs' 'https://bearblog.dev/discover/feed/'
           20         # apps
           21         feed 'rdrview' 'https://github.com/eafer/rdrview/commits/master.atom'
           22         feed 'fdm' 'https://github.com/nicm/fdm/commits.atom'
           23         feed 'sfeed' 'https://codemadness.org/git/sfeed/atom.xml'
           24         feed 'castget' 'https://github.com/mlj/castget/commits.atom'
           25         feed 'alpinelinux' 'https://www.alpinelinux.org/atom.xml'
           26         # gemini
           27         feed 'midnightpub' 'gemini://midnight.pub/feed.xml'
           28         feed 'antenna' 'gemini://warmedal.se/~antenna/atom.xml'
           29         feed 'ewok' 'gemini://warmedal.se/~bjorn/atom.xml'
           30         # people
           31         feed 'codemadness' 'https://codemadness.org/atom.xml'
           32         feed 'drewdevault' 'https://drewdevault.com/blog/index.xml'
           33         feed 'seeshyjo' 'http://joeyh.name/blog/index.rss'
           34         feed 'unixsheikh' 'https://unixsheikh.com/feed.rss'
           35         feed 'uninformativ' 'https://www.uninformativ.de/blog/feeds/en.atom'
           36         feed 'fabiensanglard' 'https://fabiensanglard.net/rss.xml'
           37         feed 'pluralistic' 'https://pluralistic.net/feed/'
           38         feed 'craphound' 'https://craphound.com/feed'
           39         feed 'koutsie' 'https://k0.tel/feed.xml'
           40         feed 'labnotes' 'https://labnotes.org/rss/'
           41         feed 'jeffgeerling' 'https://www.jeffgeerling.com/blog.xml'
           42         feed 'garfnet' 'https://garfnet.org.uk/cms/feed/'
           43         feed 'benedikt' 'https://bfloeser.de/index.xml'
           44         feed 'chromic' 'https://chromic.org/index.xml'
           45         feed 'dandelion-utilitarian' 'https://dandelion-utilitarian.com/feed.xml'
           46         feed 'wrongthink' 'https://wrongthink.link/posts/index.xml'
           47         feed 'cheeyeo' 'https://www.cheeyeo.xyz/feed.xml'
           48         feed 'veronica' 'https://vkc.sh/feed/'
           49         feed 'writer13' 'https://writer13.neocities.org/rss.xml'
           50 }