emacs/config/newsticker.org
Evie Litherland-Smith 8150864856 Clean out uses of use-package :ensure and :diminish
Stop using :ensure and manage installed package properly so that extra
packages can be easily tested and removed. Majority use case is on
NixOS anywhere where Emacs is only configuring - not installing - the
packages

Also stop using :diminish because I don't need it with doom-modeline
anyway...
2024-04-16 13:46:07 +01:00

23 lines
1.5 KiB
Org Mode

#+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
: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