diff options
-rw-r--r-- | clipfs.1 | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/clipfs.1 b/clipfs.1 new file mode 100644 index 0000000..ca59aa3 --- /dev/null +++ b/clipfs.1 @@ -0,0 +1,70 @@ +.TH clipfs 1 "2021-08-29" +.SH NAME +clipfs \- X clipboards in filesystem +.SH SYNOPSIS +.SY clipfs +.OP -h|--help +.YS +.YS +.SY clipfs +.OP -V|--version +.YS +.SY clipfs +.OP -d +.OP -f +.OP -s +.OP -o option "..." +.I MNT +.YS +.SH DESCRIPTION +.B clipfs +is used to mount a virtual filesystem at +.I MNT +path. This mounted filesystem has three regular files in its root: +.BR primary ,\ secondary ,\ clipboard . +Each of them correspond to an X selection identified by an atom with the same name. +.P +For usual day-to-day work use: +.P +.RS +.EX +$ clipfs /path/to/mountpoint +.EE +.RE +.P +This will mount the X selections filesystem at /path/to/mountpoint and fork into background. +.SH OPTIONS +.TP +.BR -h ,\ --help +Shows help message and quits. +.TP +.BR -V ,\ --version +Shows FUSE-related versioning information and quits. +.TP +.B -d +Enables debug output. This is equivalent to +.B -o debug +and it implies +.BR -f . +.TP +.B -f +Don't fork into background. +.TP +.B -s +Disable multi-threaded operation. +.TP +.BI -o\ option +Sets an +.IR option . +For a list of supported options consult output of +.B -h +or +.BR fuse (8). +.SH ENVIRONMENT +.TP +.B DISPLAY +X display to connect to. +.SH NOTES +This software is mostly experimental. As of now it only supports read operations. +.SH SEE ALSO +.BR fusermount3 (1),\ fuse (4),\ fuse (8) |