v0.2 tarball
rm 0.1
bump to v1.2
Perl script to convert your twtxt.txt file to a valid ATOM feed.
Note: No extra perl packages or any deps required (gnu awk, sha256, ...).
Twtxt is a decentralised, minimalist microblogging service for hackers.
This script is to let people follow you without having to use a twtxt client. A simple RSS/ATOM newsreader is ok.
First, you need a configuration file $HOME/.config/twtfeed/twtfeed.cfg
#
# twtfeed configuration file
#
# Author's name
$nick = "Tom Marvolo Riddle";
# Link to your online twtxt file
$url = "https://the.chamber.of.secret/twtxt.atom";
# The ATOM feed title
$title = "Avada Kedavra";
# where is your local twtxt.txt file
$twtfile = "$PATH/to/twtxt.txt";
# where is your local twtxt.atom file
$feedfile = "$PATH/to/twtxt.atom";
Then, you need to copy this script to your $PATH.
Clone or download this repo then:
To install the script to /usr/bin/
, run as root:
make install
This will also install the man page.
Optionnaly, you can set DESTDIR and PREFIX (default to /usr) to suit your need, for example:
make install PREFIX=/usr/local