diff options
author | stuebinm | 2023-09-20 17:06:15 +0200 |
---|---|---|
committer | stuebinm | 2023-09-20 17:06:15 +0200 |
commit | 90485d0dbd789fa08411203c941b4a0d79166d03 (patch) | |
tree | d2d0cf05017d6fda0b263b427e377f0415fe86fd /home | |
parent | 9893158403196f56dde1e61ca49bc11bf32afa15 (diff) |
home: add a non-video filter to newsboat
(i have too many media.ccc.de talks in my backlog, to the point of not
seeing anything else)
Diffstat (limited to 'home')
-rw-r--r-- | home/home.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/home/home.nix b/home/home.nix index 6fe4d97..950693d 100644 --- a/home/home.nix +++ b/home/home.nix @@ -210,6 +210,7 @@ queries = { unread = ''unread="yes"''; non-papers = ''( unread="yes" ) and ( tags !# "paper" )''; + non-video = ''( unread="yes" ) and ( tags !# "paper" ) and ( tags !# "video" )''; paper = ''tags # "paper"''; }; extraConfig = '' |