Skip to content

Commit

Permalink
fix(newsboat): browser, fetch catppuccin theme from github
Browse files Browse the repository at this point in the history
  • Loading branch information
uncenter committed Apr 12, 2024
1 parent c0b065f commit f06c54a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion home/programs/newsboat.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ _: {
programs.newsboat = {
enable = true;

browser = "open %u";
browser = "\"open %u\"";
urls = builtins.map (x: {"url" = x;}) [
"https://uncenter.dev/feed.xml"
"https://ryanccn.dev/feed/rss.xml"
Expand Down Expand Up @@ -35,5 +35,12 @@ _: {
"https://boehs.org/in/blog.xml"
"https://huonw.github.io/blog/atom.xml"
];

extraConfig =
builtins.readFile
(builtins.fetchurl {
url = "https://raw.githubusercontent.com/catppuccin/newsboat/main/themes/dark";
sha256 = "09x50g74mld8zv8r6a873j52zx3w86qv3mc7g4fhzr85911cz799";
});
};
}

0 comments on commit f06c54a

Please sign in to comment.