From 8c56be82235e4112210b7990ca4dd1f761fa1401 Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 20 Dec 2024 23:54:47 -0500 Subject: switch back to setopt rather than custom --- .config/emacs/modules/bd--rss.el | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to '.config/emacs/modules/bd--rss.el') diff --git a/.config/emacs/modules/bd--rss.el b/.config/emacs/modules/bd--rss.el index cd943ed..ca45065 100644 --- a/.config/emacs/modules/bd--rss.el +++ b/.config/emacs/modules/bd--rss.el @@ -5,20 +5,20 @@ (use-package newst-reader :bind (("C-z C-n" . newsticker-show-news)) - :custom - (newsticker-url-list-defaults nil) - ;; one day - (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) - ("Protesilaos Stravrou" "https://vid.puffyan.us/feed/channel/UC0uTPqBCFIpZxlz_Lv1tk_g" nil nil nil))) - (newsticker-groups '("Feeds" - ("READING" "James Enge Mastodon") - ("TECH" "Parabola GNU/Linux-libre" "suckless.org news" "operationnull blog") - ("VIDEO" "Protesilaos Stravrou")))) + :config + (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) + ("Protesilaos Stravrou" "https://vid.puffyan.us/feed/channel/UC0uTPqBCFIpZxlz_Lv1tk_g" nil nil nil)) + newsticker-groups '("Feeds" + ("READING" "James Enge Mastodon") + ("TECH" "Parabola GNU/Linux-libre" "suckless.org news" "operationnull blog") + ("VIDEO" "Protesilaos Stravrou")))) (provide 'bd--rss) -- cgit v1.2.3