How to Show notifications for filters while not displaying notifications for general feed?

wasabilotion

I made a regex filter to display a notification whenever a word gets mentioned in a feed, and I'm not really interested in everything else in the feed aside from posts containing that word. How can I achieve this in QuiteRSS? When I turn off display notifications in options, it also stops displaying notifications for my filter.

Sheldon
Hi,

Hi,

unfortunately notifications cannot be restricted to filters.

But you can create a filter that marks all news not including your WORD as read using the regex

^(?:(?!WORD).)*$

and the action

"Mark News as Read".

Afterwards you should not get any notification for the news marked as read.

Kind regards,

Sheldon

wasabilotion
Nice workaround, gonna try

Nice workaround, gonna try that later. Thank you.