diff options
-rw-r--r-- | linuxRoom.html | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/linuxRoom.html b/linuxRoom.html index 1994b5c..f32aef5 100644 --- a/linuxRoom.html +++ b/linuxRoom.html @@ -38,6 +38,7 @@ table { <li>Mail client: <a href="#evolution">evolution</a></li> <li>Editor: <a href="#lite-xl">lite-xl</a></li> <li>Media player: <a href="#mpv">mpv</a></li> + <li>Feed reader: <a href="#liferea">liferea</a></li> <li>Terminal: <a href="#alacritty">alacritty</a></li> <li>Shell: <a href="#zsh">zsh</a></li> <li>Terminal based editor: <a href="#neovim">neovim</a></li> @@ -291,8 +292,9 @@ table { <td> <h2 id="evolution">Evolution mail</h2> <p> - I used claws-mail for a while but it didn't work well with some of my email accounts.<br/> - Evolution is still a bit more bloated than I want but I was able to customize it to make it work better for my uses. + I used claws-mail for a while but it didn't work well with some of my email accounts. + Evolution is still a bit more bloated than I want but I was able to + customize it to make it work better for my uses. </p> </td> </tr> @@ -336,6 +338,39 @@ table { </p> </td> </tr> + + <tr> + <td> + <h2 id="liferea">Liferea</h2> + <p> + Feed readers are one of those things I use on and off. A lot like mail clients feed readers + tend to be very bloated. Liferea is my favorite but + it has always had issues with nvidia drivers until I found out a trick.<br/><br> + If liferea has issues add this to your /etc/environment and reboot</br> + <code>WEBKIT_DISABLE_DMABUF_RENDERER=1</code> + + <br/><br/> + Some cool tricks: + <ul> + <li> + Get <a href="https://github.com/shevabam/get-rss-feed-url-extension" target="_blank"> + this plugin<a/> to find feeds easier. + </li> + <li> + You can turn youtube channels into rss feeds with + <code>https://www.youtube.com/feeds/videos.xml?channel_id={channel_id}</code><br/> + This can be done for all your subscriptions with + <a href="https://gist.github.com/nathansmith117/1ad3ffbf22a4c04ca169dd76a99a5236" target="_blank"> + this script</a> + </li> + <li> + You can drag and drop youtube urls from your feed reader into mpv so you can keep up with + your subscriptions without even touching youtube's website. + </li> + </ul> + </p> + </td> + </tr> </table> <table border="1" width="60%"> |