diff options
author | qorg11 <qorg@vxempire.xyz> | 2021-06-15 16:23:49 +0200 |
---|---|---|
committer | qorg11 <qorg@vxempire.xyz> | 2021-06-15 16:25:14 +0200 |
commit | f2bd6639c34bdaa413715f1b87a63987aaad4aae (patch) | |
tree | cd6004ffc3063ab7db0808307d8624506fbbafa4 | |
parent | 144749aabbd31494e4b90bb165f4098ab7eae1d9 (diff) | |
download | demiurge-f2bd6639c34bdaa413715f1b87a63987aaad4aae.tar.gz demiurge-f2bd6639c34bdaa413715f1b87a63987aaad4aae.zip |
Improved docs in readme
-rw-r--r-- | readme.org | 34 |
1 files changed, 30 insertions, 4 deletions
@@ -3,9 +3,35 @@ Attempt of client of Pleroma (It may work with mastodon as well, but haven't tried) written in C because i'm criminally insane -* THANKS TO - Dendy, who wrote the [[https://git.fai.su/dendy/fedibooru][Code reference]] +** How to use + Demiurge highly uses the UNIX philosophy + + #+begin_src shell + ./demiurge -s "Hello this is a status" -v "unlisted" # Post "Hello + # this is a status" with the unlisted schope -* TODO: - Literally everything + ./demiurge -F "filename.jpg" -s "ebin maymay :DDD" # Post "ebin + # maymay" with + # "filename.jpg" + # attatched, the + # file description + # will be the same + # as the filename. + + for file in *.jpg; do ./demiurge -F $file -s "sbammin :DD"; done # Posts + # all + # jpgs + # files + # in + # different + # statuses + cat /etc/passwd | ./demiurge # Posts the output of /etc/passwd + #+end_src + +** TODO: + Check timeline and notifications, replies... + +** THANKS TO + + Dendy, who wrote the [[https://git.fai.su/dendy/fedibooru][Code reference]] |