agendafs
A filesystem for your calendar.
git clone git://mccd.space/agendafscommit a2ad4416638b808d865961f9775033e9c6993e9d
parent 9b61bad03a4835170c70a1a7024dbf3231714654
Author: Marc Coquand <marc@coquand.email>
Date: Fri, 1 Aug 2025 16:55:21 +0200
Docs
Diffstat:
2 files changed, 4 insertions(+), 21 deletions(-)
diff --git a/README.md b/README.md
@@ -124,26 +124,9 @@ curl -X MKCALENDAR \
'https://my-nextcloud-server/remote.php/dav/calendars/me/journal'
```
-### Categories
-
-Categories require xattributes to be installed. See the man pages of
-xattr(7), setfattr(1), getfattr(1) for basic usage.
-
-#### Find all files with categories, and their categories
-
-```sh
-$ find . -type f -exec getfattr -n user.categories {} + 2>/dev/null
-```
-
-#### Find files by category
-
-```sh
-$ find . -type f -exec getfattr -n user.categories {} + 2>/dev/null | grep -B1 "MY_CATEGORY" | grep '^# file' | awk '{ print substr($0, 9) }'
-```
-
### Find files by category with nnn
-Add the following function to your profile to search for files matching a category.
+Add the following function to your profile to search your notes files with a matching category.
```sh
find_by_category() {
diff --git a/agendafs.8.scd b/agendafs.8.scd
@@ -58,8 +58,8 @@ Mount vdir storage with agendafs to your home journal directory:
$HOME/journal
```
-Mount vdir storage. Let files without file extension automatically default
-to markdown:
+Mount vdir storage, and let files created outside of Agendafs automatically
+use Markdown:
```
$ mount.agendafs \\
@@ -68,7 +68,7 @@ to markdown:
$HOME/journal
```
-Find all files with categories, and their categories:
+Find all files with categories:
```
$ find . -type f -exec getfattr -n user.categories {} \\