emacs/config/newsticker.org

24 lines
1.5 KiB
Org Mode
Raw Normal View History

#+title: Newsticker Config
#+author: Evie Litherland-Smith
#+email: evie@xenia.me.uk
#+filetags: :emacs:config:org:
#+property: header-args:emacs-lisp :tangle yes :mkdirp yes :results output silent
#+begin_src emacs-lisp
(use-package newsticker
:ensure t
:custom
(newsticker-url-list-defaults '(("Emacs Wiki" "https://www.emacswiki.org/emacs?action=rss" nil 3600)
("LWN (Linux Weekly News)" "https://lwn.net/headlines/rss")
("Quote of the day" "https://feeds.feedburner.com/quotationspage/qotd" "07:00" 86400)
("The Register" "https://www.theregister.co.uk/headlines.rss")
("slashdot" "http://rss.slashdot.org/Slashdot/slashdot" nil 3600)
("Wired News" "https://www.wired.com/feed/rss")))
(newsticker-url-list '(("Proton Blog" "https://proton.me/blog/feed" nil nil nil)
("The Friday Chillout" "https://podcasts.watchnebula.com/chilloutpod" nil nil nil)
("SystemCrafters News" "https://systemcrafters.net/rss/news.xml" nil nil nil)
("Atlas NYXT News" "https://nyxt.atlas.engineer/feed" nil nil nil)
("LiberaChat" "https://libera.chat/atom.xml" nil nil nil)
("This week in Rust" "https://this-week-in-rust.org/rss.xml" nil nil nil)
("Forgejo Feed" "https://forgejo.org/rss.xml" nil nil nil))))
#+end_src