all repos — dotfiles @ 4c9efd42894630e919c914f2d5d2828bc71b5e8e

personal dotfiles

add newsboat configuration
la-ninpre leobrekalini@gmail.com
Tue, 30 Nov 2021 18:38:22 +0300
commit

4c9efd42894630e919c914f2d5d2828bc71b5e8e

parent

523f2b38ee3682b68c7e255eaf5e0b23299e5587

M README.mdREADME.md

@@ -26,6 +26,8 @@ * mpd

* moc +* newsboat + * alacritty * kitty
M installinstall

@@ -2,7 +2,8 @@ #!/bin/sh

# TODO: make this better. it really sucks. -for prg in alacritty bin bash doom-emacs kitty moc mpd nvim starship xmonad +for prg in alacritty bin bash doom-emacs kitty moc mpd nvim starship xmonad \ + newsboat do stow -vDt ~ "$prg" stow -vt ~ "$prg"
A newsboat/.config/newsboat/config

@@ -0,0 +1,15 @@

+browser brave +reload-threads 10 + +notify-always yes +notify-program "~/.local/bin/notify-newsboat" + +# color scheme +highlight article "^(Title):.*$" green default bold +highlight article "^(Feed):.*$" red default +highlight article "^(Author):.*$" cyan default +highlight article "^(Date):.*$" green default +highlight article "https?://[^ ]+" blue default underline + +color info default color0 +color listfocus color11 color4
A newsboat/.config/newsboat/urls

@@ -0,0 +1,12 @@

+https://git.sr.ht/~rabbits/uxn/log/main/rss.xml "git" "uxn" +https://git.sr.ht/~rabbits/nasu/log/main/rss.xml "git" "uxn" +https://git.sr.ht/~rabbits/noodle/log/main/rss.xml "git" "uxn" +https://git.sr.ht/~rabbits/dexe/log/master/rss.xml "git" "uxn" +https://git.sr.ht/~rabbits/orca-toy/log/main/rss.xml "git" "uxn" +https://git.sr.ht/~rabbits/left/log/main/rss.xml "git" "uxn" +https://www.youtube.com/feeds/videos.xml?channel_id=UCVls1GmFKf6WlTraIb_IaJg "yt" # distrotube +https://www.youtube.com/feeds/videos.xml?channel_id=UCld68syR8Wi-GY_n4CaoJGA "yt" # brodie robertson +https://www.youtube.com/feeds/videos.xml?channel_id=UC7YOGHUfC1Tb6E4pudI9STA "yt" # mental outlaw +https://www.youtube.com/feeds/videos.xml?channel_id=UCAYKj_peyESIMDp5LtHlH2A "yt" # unfa +https://www.youtube.com/feeds/videos.xml?channel_id=UCv1Kcz-CuGM6mxzL3B1_Eiw "yt" # gardiner bryant +https://www.youtube.com/feeds/videos.xml?channel_id=UCNypeTQAfb2pBA-BLPYK0kg "yt" # devine lu linvega
A newsboat/.local/bin/notify-newsboat

@@ -0,0 +1,5 @@

+#!/bin/sh + +# this is specified in newsboat config as `notify-program` + +notify-send -t 5000 "newsboat" "$1"