agendafs

A filesystem for your calendar.

git clone git://mccd.space/agendafs
commit 28836352a648518efbf8f715f662a041b741c376
parent 316b9ab1caf4e82ee34db579e81b086b8aaa4945
Author: Marc Coquand <marc@coquand.email>
Date:   Mon, 28 Jul 2025 17:15:13 +0200

Docs

Diffstat:
Magendafs.8.scd | 19++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
diff --git a/agendafs.8.scd b/agendafs.8.scd
@@ -18,10 +18,11 @@ allowing you to create and edit notes.
 Most mount options are described in _mount.fuse_(8) and _mount_(8). Below
 are agendafs specific options:
 
-*vdir=*_vdirpath_
+*vdir=*<_path_>
 	Use the specified vdir storage path as mountpoint. Currently
 	only one calendar is supported. Required.
-*ext=*_fileextension_
+
+*ext=*<_format_>
 	Automatically assign a file extension to files created outside
 	of Agendafs. Disabled by default.
 
@@ -33,6 +34,7 @@ usage. Supported extended attributes are:
 
 *user.categories*
 	A comma separated list of categories to classify an entry.
+
 *user.class*
 	The classification of an entry. Can be either *public*,
 	*private* or *confidential*.
@@ -42,7 +44,18 @@ usage. Supported extended attributes are:
 Mount vdir storage with agendafs to your home journal directory:
 
 	```
-	$ mount.agendafs -o ext=md -o vdir=$HOME/.calendars/vjournal-calendar \\
+	$ mount.agendafs \\
+	  -o vdir=$HOME/.calendars/vjournal-calendar \\
+	  $HOME/journal
+	```
+
+Mount vdir storage. Let files without file extension automatically default
+to markdown:
+
+	```
+	$ mount.agendafs \\
+	  -o ext=md \\
+	  -o vdir=$HOME/.calendars/vjournal-calendar \\
 	  $HOME/journal
 	```