[oni-elfeed] Fix regular expression for security updates
This commit is contained in:
parent
e178ca2d41
commit
bd24cb6def
1 changed files with 6 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||
;; Keywords: local
|
||||
;; Version: 2023.0411.200412
|
||||
;; Version: 2023.0412.115324
|
||||
;; Package-Requires: (elfeed olivetti)
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
|
@ -91,7 +91,11 @@
|
|||
(add-hook 'elfeed-new-entry-hook
|
||||
(elfeed-make-tagger :feed-url (rx "lwn.net")
|
||||
:entry-title (rx bos (or "[$]"
|
||||
"Security updates for"))
|
||||
(seq "Security"
|
||||
whitespace
|
||||
"updates"
|
||||
whitespace
|
||||
"for")))
|
||||
:remove 'unread))
|
||||
|
||||
;;; Mark any post not containing my resolutions as read.
|
||||
|
|
Loading…
Reference in a new issue