You are not logged in.

#1 2022-07-22 18:11:14

JaydenDev
Member
Registered: 2022-07-11
Posts: 172

[Solved] What's the intended/idea way to use forum RSS

1. What client should I use?
2. How should I configure it?
3. How do I optimize it?
4. Useful plugins for said client.

Last edited by JaydenDev (2022-07-22 18:17:20)


System Specs:
Intel Core i5-2400 Nvidia GTX 1050ti Logitech G402 Hyperion Fury (Mouse) BestBuy Essentials USB Keyboard
Software Specifications:
Desktop Environment: KDE Plasma Window Manager: KWin Operating System: Arch Linux (btw)

Offline

#2 2022-07-22 18:16:50

JaydenDev
Member
Registered: 2022-07-11
Posts: 172

Re: [Solved] What's the intended/idea way to use forum RSS

Alright, so RSS isn't a very great experience. For any forum that provides RSS.

1. Not all the topics show up
2. It just opens it in a web browser anyway


System Specs:
Intel Core i5-2400 Nvidia GTX 1050ti Logitech G402 Hyperion Fury (Mouse) BestBuy Essentials USB Keyboard
Software Specifications:
Desktop Environment: KDE Plasma Window Manager: KWin Operating System: Arch Linux (btw)

Offline

#3 2022-07-22 20:46:49

seth
Member
Registered: 2012-09-03
Posts: 50,010

Re: [Solved] What's the intended/idea way to use forum RSS

1. Not all the topics show up

* Atom active topics feed
* Atom forum feed
* Atom topic feed

2. It just opens it in a web browser anyway

https://wiki.archlinux.org/title/Web_feed

Online

#4 2022-07-24 14:26:38

TadaenSylvermane
Member
Registered: 2014-01-24
Posts: 34

Re: [Solved] What's the intended/idea way to use forum RSS

I tried it with Newsboat recently. It worked, I just missed my daily forum troll checking things out. I now just visit my sites daily like I always did. I do however keep it running and checking for Arch news stuff along with a few other sites, not forums directly. It's piped to a script that runs on my xfce panel.

Here's the script I made / modified.

#!/bin/sh
# tadaen sylvermane | jason gibson
# modified from comment in reddit article
# https://www.reddit.com/r/archlinux/comments/101rcs/what_rssnews_aggregator_do_you_use/
# by MCHerb

# set local $PATH

PATH=/usr/bin

# refresh lists


# crontab this. i have it every hour  
# newsboat -x reload

# this runs every 30 seconds via  xfce generic monitor panel plugin

# get number of unread, if any

COUNT=$(newsboat -x print-unread | awk '{print $1}')

# if any unread then mod number shown else maintain 0

if [ "$COUNT" -gt 0 ] ; then
        echo " News: ${COUNT} "
else
        echo " News: 0 "
fi

Offline

Board footer

Powered by FluxBB