This repository has been archived on 2024-05-03 . You can view files and clone it. You cannot open issues or pull requests or push a commit.
b6f1f1430e0c5cb81d96eb70c67ce7b720e84406
Motivation
A script to automatically mark entires as read in miniflux using its api
How to use
config file
[options]
# instance of miniflux
url=https://example.com
# generated token from miniflux
token=???????????????????????????????????????????
# age of entries that should be marked as read
age=86400
# categories that should be ignored (entries will not be marked as read)
ignore=audio & video
systemd service
[Unit]
Description=mark certain entries as read in miniflux
[Service]
Type=oneshot
ExecStart=/usr/bin/env python3 ./mark_as_read.py --config ./mark_as_read.ini
systemd timer
[Unit]
Description=mark certain entries as read in miniflux
[Timer]
OnCalendar=daily
[Install]
WantedBy=timers.target
Description
Languages
Python
100%