summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--rss.el
blob: c8f2094163a0650c2eb84822ef14abb83f522cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;; -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:


(use-package newst-reader
  :bind (("C-z C-n" . newsticker-show-news))
  :config
  (setopt newsticker-url-list-defaults nil
          newsticker-retrieval-interval (* 60 60 24)
          newsticker-automatically-mark-items-as-old nil

          newsticker-url-list '(("Ambrose and Elsewhere" "https://jamesenge.com/engeblog/feed" nil nil nil)
                                ("Tales From the Magician's Skull" "https://goodman-games.com/tftms/category/book-reviews/feed" nil nil nil)
                                ("Guix Blog" "https://guix.gnu.org/feeds/blog.atom" nil nil nil)
                                ("Parabola GNU/Linux-libre" "https://www.parabola.nu/feeds/news/" nil nil nil))
          newsticker-groups '("Feeds"
                              ("READING" "Ambrose and Elsewhere" "Tales From the Magician's Skull")
                              ("TECH" "Guix Blog" "Parabola GNU/Linux-libre"))))


(provide 'bd--rss)
;;; bd--rss.el ends here