diff options
Diffstat (limited to '.config/emacs/modules/bd--rss.el')
-rw-r--r-- | .config/emacs/modules/bd--rss.el | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/emacs/modules/bd--rss.el b/.config/emacs/modules/bd--rss.el new file mode 100644 index 0000000..6cd8507 --- /dev/null +++ b/.config/emacs/modules/bd--rss.el @@ -0,0 +1,24 @@ +;; -*- lexical-binding: t; -*- + + +(keymap-global-set "C-z C-n" 'newsticker-show-news) + +(setopt newsticker-url-list-defaults nil + newsticker-automatically-mark-items-as-old nil + newsticker-url-list '(("Ambrose and Elsewhere" "https://jamesenge.com/engeblog/feed" nil nil nil) + ("James Enge Mastodon" "https://mastodon.sdf.org/@jamesenge.rss" nil nil nil) + ("Tales From the Magician's Skull" "https://goodman-games.com/tftms/category/book-reviews/feed" 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) + ("Bugswriter" "https://yewtu.be/feed/channel/UCngn7SVujlvskHRvRKc1cTw" nil nil nil) + ("Protesilaos Stravrou" "https://yewtu.be/feed/playlist/PL8Bwba5vnQK14z96Gil86pLMDO2GnOhQ6" nil nil nil)) + ;; may require ./newsticker/groups to be cleared + newsticker-groups '("Feeds" + ("READING" "James Enge Mastodon" "Tales From the Magician's Skull" "Ambrose and Elsewhere") + ("TECH" "Parabola GNU/Linux-libre" "suckless.org news") + ("VIDEO" "Mental Outlaw" "Luke Smith" "Bugswriter" "Protesilaos Stravrou"))) + + +(provide 'bd--rss) |