Spenser Black

Results 109 comments of Spenser Black

:thinking: Yeah in YAML I think it would just be ```yaml general: spacing: 2 padding: 0 # etc. ``` Now I'm leaning more towards TOML, since it provides the user...

:thinking: Now that I think about it, implementing `serde::Deserialize` on the [`Config` struct](https://github.com/o2sh/onefetch/blob/6a7a3d6b680225a423ebae4781bfbc6e35349010/src/cli.rs#L20) would accomplish a lot of the necessary work. Then it's pretty easy to choose which format to...

I needed to double-check since it's been a while since I've used this Rust feature, but [destructuring](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=7814c0753abbb1e4280ee281cc2907a3) could make this really easy to implement. Might be worth making this a...

@Byron Do you think this is caused by [the git vulnerability patch](https://github.blog/2022-04-12-git-security-vulnerability-announced/) that now checks the ownership of the `.git` directory? Is the [`safe.directory` configuration](https://git-scm.com/docs/git-config/2.35.2#Documentation/git-config.txt-safedirectory) be relevant?

>would you expect to find the public key somewhere else or in another format? Personally if I was just going to guess where to find the key, I'd probably have...

Another thing to consider is that maybe `minlevel` isn't the best. I think the majority of minimum levels would be either 1 or 2. I doubt >=3 will be common....

This proposed syntax might resolve this: https://github.com/charmbracelet/vhs/issues/130#issuecomment-1299415557

A new keyword definitely shouldn't be added without careful consideration, but what do you think about `OutputRelative` or something similar? While it's definitely far more common for paths to be...

I'll note that, while checking out behavior, my initial assumption was that `output.gif` would be relative to the current directory, and `./output.gif` would be relative to the file's directory. Not...