Remove newsticker stuff

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:30 +00:00
parent 1777cb8059
commit 6376e68215

View File

@ -361,41 +361,3 @@ needs to be set up to install them if they aren't already.
(setq show-paren-style 'expression) (setq show-paren-style 'expression)
(paredit-mode)))) (paredit-mode))))
#+end_src #+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
Also I want Newsticker to download enclosed files so I set
=newsticker-new-item-functions= to contain the provided
=newsticker-download-enclosures= function.
#+begin_src emacs-lisp
(setq newsticker-new-item-functions
'(newsticker-download-enclosures))
#+end_src