From bae320b713fd9cecb5b9ee6477eaeb5b9adc3410 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:29 +0000 Subject: [PATCH] configure newsticker for reading RSS feeds --- config.org | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/config.org b/config.org index 650b8a6..a1dbc91 100644 --- a/config.org +++ b/config.org @@ -315,3 +315,31 @@ needs to be set up to install them if they aren't already. (mpdel-mode)) #+end_src +* RSS Feeds + + Using Newsticker, because it's included in Emacs. All I have to do + here is add in all the feeds and add a global keybinding for + =newsticker-show-news=. For some reason, I had to set both + =newsticker-url-list-defaults= and =newsticker-url-list= to get rid + of the EmacsWiki feed it has by default. + + #+begin_src emacs-lisp + (use-package newsticker + :bind + ("C-x M-r" . newsticker-show-news)) + (setq newsticker-url-list-defaults nil) + (setq newsticker-url-list + '(("Sean Carroll's Mindscape Podcast" + "https://www.patreon.com/rss/seanmcarroll?auth=xZISWBuCvZ1rKXy547HnRXQVyBIscY1P" + nil + 3600) + ("Corecursive" + "https://link.chtbl.com/corecursive?platform=rss" + nil + 3600) + ("The Titanium Physicists Podcast" + "http://titaniumphysics.libsyn.com/rss" + nil + 3600))) + #+end_src +