From 6376e6821502a988a33ebf9ae464954034934170 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:30 +0000 Subject: [PATCH] Remove newsticker stuff --- config.org | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/config.org b/config.org index a708a77..9a2da76 100644 --- a/config.org +++ b/config.org @@ -361,41 +361,3 @@ needs to be set up to install them if they aren't already. (setq show-paren-style 'expression) (paredit-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 - - 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 -