agendafs
A filesystem for your calendar.
git clone git://mccd.space/agendafscommit bf1b511a7be881ef14bff881b6d08b2add641a53
parent f69fab23e79d7430fadd2838037c099503066ec2
Author: Marc Coquand <marc@coquand.email>
Date: Sun, 27 Jul 2025 11:59:33 +0200
Add manpages
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/agendafs.8.scd b/agendafs.8.scd
@@ -36,18 +36,21 @@ usage. Supported extended attributes are:
# EXAMPLE
Mount vdir storage with agendafs to your home journal directory:
+
```
$ mount.agendafs -o vdir=$HOME/.calendars/vjournal-calendar \
$HOME/journal
```
Find all files with categories, and their categories:
+
```
$ find . -type f -exec getfattr -n user.categories {} \
+ 2>/dev/null
```
Find files by category:
+
```
$ find . -type f -exec getfattr -n user.categories {} + 2>/dev/null \
| grep -B1 "MY_CATEGORY" \