shithub: svcfs

Download patch

ref: 55c1a11efd4ea92a6a8eaf89a685a90951a2fbf2
parent: 4b696a10337b7d64bf6b59a3562e7df570848158
author: Michael Misch <michaelmisch1985@gmail.com>
date: Fri Jan 16 21:32:43 EST 2026

Small amount of README updates

--- a/README
+++ b/README
@@ -12,4 +12,23 @@
 (Note, newlines are important!)
 - `create <buffername>`: This will create a buffer. This must be called before any of the following
 - `title <buffername>\ntitle text`: This will set the title of a given buffer
-- `feed <buffername>\nsome text`: This will be appended to a given buffers' feed file
\ No newline at end of file
+- `feed <buffername>\nsome text`: This will be appended to a given buffers' feed file
+
+Working with services:
+`mount /srv/<svc> /mnt/<svc>`
+eg, mount /srv/oftc /mnt/oftc
+
+/mnt/oftc/aside	- sidebar content, e.g. nicklist
+/mnt/oftc/ctl	- control file
+/mnt/oftc/feed	- current buffer's feed
+/mnt/oftc/input	- write to current buffer
+/mnt/oftc/notify 	- any pending notifications
+/mnt/oftc/status	- any status (service specific)
+/mnt/oftc/tabs	- list of all service buffers for client
+/mnt/oftc/title	- title for current buffer
+
+Ctl messages on /mnt/<svc>/ctl
+- `buffer <buffname>`: Change the current buffer content displayed 
+
+`echo 'buffer #cat-v' >> /mnt/oftc/ctl`
+
--