Disable numbering in tmpfilesd project page

Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
magic_rb 2023-12-30 19:23:38 +01:00
parent 25ce0a9598
commit 9311eae63f
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -1,3 +1,5 @@
#+options: num:nil
=tmpfilesd= is a daemon which manages a file hierarchy declaratively. It is unfortunately slightly underused in my opinion. I'm imagining a tool which completely replaces any need for commands like =rm=, =cp=, =mv=, ... and of course their equivalents in your favorite standard library. =tmpfilesd= is a daemon which manages a file hierarchy declaratively. It is unfortunately slightly underused in my opinion. I'm imagining a tool which completely replaces any need for commands like =rm=, =cp=, =mv=, ... and of course their equivalents in your favorite standard library.
Currently =tmpfilesd= takes a file hierarchy specified in a particular format, as so: Currently =tmpfilesd= takes a file hierarchy specified in a particular format, as so:
@ -15,5 +17,4 @@ Furthermore, it would be desirable if ~tmpfilesd~ could display diffs between di
With everything described above it could become a ubiquitous file management tool. With everything described above it could become a ubiquitous file management tool.
* Proposal * Proposal
Utilize a Haskell library, for diffing arbitrary data structures where that data structure would be the file hierarchy. One such library could be [[https://hackage.haskell.org/package/gdiff][gdiff]]. It already provides us with an patch data structure which then can be used for all sorts of things including diff display and actually bringing the filesystem into the desired state. Utilize a Haskell library, for diffing arbitrary data structures where that data structure would be the file hierarchy. One such library could be [[https://hackage.haskell.org/package/gdiff][gdiff]]. It already provides us with an patch data structure which then can be used for all sorts of things including diff display and actually bringing the filesystem into the desired state.