1
0
Fork 0

Compare commits

..

No commits in common. "92f4d8b53e47ab071293abe95411773165dc0abf" and "aa2444374b45b3f907995b22cc18c68d8995c2cb" have entirely different histories.

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2023.0331.141153
;; Version: 2023.0108.120326
;; Package-Requires: (elfeed olivetti)
;; This program is free software; you can redistribute it and/or modify
@ -92,8 +92,7 @@
;;; Mark any post from LWN as read if it starts with “[$]”.
(add-hook 'elfeed-new-entry-hook
(elfeed-make-tagger :feed-url (rx "lwn.net")
:entry-title (rx bos (or "[$]"
"Security updates for"))
:entry-title (rx bos "[$]")
:remove 'unread))
;;; Mark any post not containing my resolutions as read.
@ -103,15 +102,6 @@
(seq "1920" (minimal-match (zero-or-more whitespace)) nonl (minimal-match (zero-or-more whitespace)) "1080"))))
:remove 'unread))
;;; Mark any post from Planet Emacslife read if I also follow the originating
;;; blog. This way I won't have so many duplicates.
(add-hook 'elfeed-new-entry-hook
(elfeed-make-tagger :feed-url (rx "planet.emacslife.com")
:entry-title `(not ,(rx bos (or "Irreal"
"Sacha Chua"
"Andrea")
":"))))
(add-hook 'elfeed-show-mode-hook #'oni-elfeed-enable-olivetti-mode)
(provide 'oni-elfeed)