RyanGreenup

Results 46 comments of RyanGreenup

- Mac - `pbcopy ` - `pbopen ` - Wayland - `wl-open ` - `wl-paste ` - BSD is just Xclip Try also something like this : ```bash #!/bin/sh case...

So as of d3b53df the cadmus script should now use commands for the clipboard based on the kernel name using `uname -s`, this issue however, should stay open until #12...

Now all the subscripts either take STDIN or STDOUT (or checks itself in the case of fix) and cadmus tests the OS for the appropriate clipboard command. Any scripts underneath...

Subtags would be cool, but I would recommend using `/` to delimit them for the sake of: 1. Compatability with [Notable](https://github.com/notable/notable) 2. Simplicity of working with them * (e.g. there...

If you could atleast see the ` .org ` extension that would be a massive improvement. Then you could just search for org. Being able to select multiple files would...

So in case it helps anybody else, this is how I worked around this. I have my `org` files under VC with `git` and I just created a seperate branch...

> like the person above, i use podgrab. works incredibly well. What id love is to run a seperate navidrom instance just on that folder that my play:sub or other...

KaTeX can get annoying because it doesn't support equation numbering, and the non-standard use of `tag` makes converting to LaTeX a headache, having both like [wikiJS](https://docs.requarks.io/releases) makes the most sense.

These are all the functions I could find under `Archive::` with the `set_` prefix: * [tar::Archive::set_mask](https://docs.rs/tar/latest/tar/struct.Archive.html#method.set_mask) * [tar::Archive::set_overwrite](https://docs.rs/tar/latest/tar/struct.Archive.html#method.set_overwrite) * [tar::Archive::set_ignore_zeros](https://docs.rs/tar/latest/tar/struct.Archive.html#method.set_ignore_zeros) * [tar::Archive::set_unpack_xattrs](https://docs.rs/tar/latest/tar/struct.Archive.html#method.set_unpack_xattrs) * [tar::Archive::set_preserve_mtime](https://docs.rs/tar/latest/tar/struct.Archive.html#method.set_preserve_mtime) * [tar::Archive::set_preserve_ownerships](https://docs.rs/tar/latest/tar/struct.Archive.html#method.set_preserve_ownerships) * [tar::Archive::set_preserve_permissions](https://docs.rs/tar/latest/tar/struct.Archive.html#method.set_preserve_permissions) There's also...

## Tar.rs logic It seems like the work flow of tar is: ### Compress 1. Make a [builder](https://docs.rs/tar/latest/tar/struct.Builder.html#method.mode) objectwith a [Header::newgnu()](https://docs.rs/tar/latest/tar/struct.Builder.html#method.append), - this object uses [builder.append(&mut header)](https://docs.rs/tar/latest/tar/struct.Builder.html#method.append) to add files...