blob: eda6063954a2ecf493f0e9faabeac928217a11f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
;;; -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(keymap-global-set "C-z C-n" 'newsticker-show-news)
(setopt newsticker-url-list-defaults nil
newsticker-retrieval-interval (* 60 60 24)
newsticker-automatically-mark-items-as-old nil
newsticker-url-list '(("James Enge Mastodon" "https://mastodon.sdf.org/@jamesenge.rss" nil nil nil)
("operationnull blog" "https://operationnull.com/atom.xml" nil nil nil)
("Parabola GNU/Linux-libre" "https://www.parabola.nu/feeds/news/" nil nil nil)
("suckless.org news" "https://suckless.org/atom.xml" nil nil nil)
("Mental Outlaw" "https://vid.puffyan.us/feed/channel/UC7YOGHUfC1Tb6E4pudI9STA" nil nil nil)
("Luke Smith" "https://vid.puffyan.us/feed/channel/UC2eYFnH61tmytImy1mTYvhA" nil nil nil)
("Protesilaos Stravrou" "https://vid.puffyan.us/feed/channel/UC0uTPqBCFIpZxlz_Lv1tk_g" nil nil nil))
;; may require ./newsticker/groups to be cleared
newsticker-groups '("Feeds"
("READING" "James Enge Mastodon")
("TECH" "Parabola GNU/Linux-libre" "suckless.org news" "operationnull blog")
("VIDEO" "Mental Outlaw" "Luke Smith" "Protesilaos Stravrou")))
(provide 'bd--rss)
;;; bd-rss ends here
|