1
0
Fork 0

Add watchfeeds and news command

This commit is contained in:
Malte Brandy 2022-01-28 16:27:43 +01:00
parent 9f0bb04cb8
commit d2968d8007
3 changed files with 33 additions and 27 deletions

View file

@ -65,7 +65,8 @@ in
Browser = fork "firefox";
"Private Browser" = fork "firefox --private-window";
Chromium = fork "chromium";
Watchfeeds = "newsboat -r";
Watchfeeds = "watchfeeds";
News = "news";
Games = {
Steam = fork "steam";
Minecraft = fork "minecraft-launcher";

View file

@ -15,34 +15,39 @@ let
</rss>
EOF
'';
watchfeedsConfig = ''
datetime-format "%Y-%m-%d"
cleanup-on-quit no
'';
watchfeeds = [
# Haskell
"https://www.youtube.com/feeds/videos.xml?channel_id=UCI1Z201n-8OelkSg0DVOsng" # Tweag
"https://www.youtube.com/feeds/videos.xml?channel_id=UCxVE_2I_fsOe3Mgn_QlXqbQ" # Nomeata
"http://www.zdf.de/rss/podcast/video/zdf/comedy/die-anstalt"
"https://www.zdf.de/rss/zdf/show/mai-think-x-die-show"
"https://www.youtube.com/feeds/videos.xml?channel_id=UCyHDQ5C6z1NDmJ4g6SerW8g" # Mailab
"https://www.youtube.com/feeds/videos.xml?channel_id=UC2C_jShtL725hvbm1arSV9w" # GCP Grey
"https://www.youtube.com/feeds/videos.xml?channel_id=UCpXBGqwsBkpvcYjsJBQ7LEQ" # Critical Role
"exec:${serien}"
];
newsConfig = ''
${watchfeedsConfig}
urls-source "ocnews"
ocnews-url "https://cloud.maralorn.de"
ocnews-login "maralorn"
ocnews-password "${(pkgs.privateValue { adminpass =""; } "nextcloud-admin").adminpass}"
'';
in
{
xdg.configFile."newsboat/urls".text = lib.concatStringsSep "\n" watchfeeds;
home = {
file = {
"newsboat-config" = {
target = ".newsboat/config";
text = "datetime-format \"%Y-%m-%d\"";
};
"newsboat-urls" = {
target = ".newsboat/urls";
text = lib.concatStringsSep "\n" [
# Haskell
"https://www.youtube.com/feeds/videos.xml?channel_id=UCI1Z201n-8OelkSg0DVOsng" # Tweag
"https://www.youtube.com/feeds/videos.xml?channel_id=UCxVE_2I_fsOe3Mgn_QlXqbQ" # Nomeata
"http://www.zdf.de/rss/podcast/video/zdf/comedy/die-anstalt"
"https://www.zdf.de/rss/zdf/show/mai-think-x-die-show"
"https://www.youtube.com/feeds/videos.xml?channel_id=UCyHDQ5C6z1NDmJ4g6SerW8g" # Mailab
"https://www.youtube.com/feeds/videos.xml?channel_id=UC2C_jShtL725hvbm1arSV9w" # GCP Grey
"https://www.youtube.com/feeds/videos.xml?channel_id=UCpXBGqwsBkpvcYjsJBQ7LEQ" # Critical Role
"exec:${serien}"
];
};
packages = builtins.attrValues {
news = pkgs.writeShellScriptBin "news" "${pkgs.newsboat}/bin/newsboat -r -C ${builtins.toFile "news-config" newsConfig}";
watchfeeds = pkgs.writeShellScriptBin "watchfeeds" "${pkgs.newsboat}/bin/newsboat -r -C ${builtins.toFile "watchfeeds-config" watchfeedsConfig}";
};
packages = builtins.attrValues rec { inherit (pkgs) newsboat; };
};
}

View file

@ -20,9 +20,9 @@ let
".local/share/khal"
".local/share/mpd"
".local/share/waydroid"
".local/share/newsboat"
".mozilla/firefox/maralorn-default"
".minecraft"
".newsboat"
".ssh"
".task"
".vdirsyncer"