Rotz: Cross platform dotfile manager written in Rust
volllly.github.io
Rotz: Cross platform dotfile manager written in Rust
1–10 of 46 posts
Re: Rotz: Cross platform dotfile manager written in Rust
#2This is really an unfortunate name - literally „snot“ in German.
Re: Rotz: Cross platform dotfile manager written in Rust
#3Means snot in German
Re: Rotz: Cross platform dotfile manager written in Rust
#4This is really an unfortunate name - literally „snot“ in German.
I'm pretty sure that's intentional. ;)
Re: Rotz: Cross platform dotfile manager written in Rust
#5This is really an unfortunate name - literally „snot“ in German.
It seems they're fully aware of it - the logo in the website is a nose emoji.
Re: Rotz: Cross platform dotfile manager written in Rust
#6To the folks who missed the nose next to the name of the app, I needed a second look.
Re: Rotz: Cross platform dotfile manager written in Rust
#7Is there any specific benefit of using this instead of GNU stow besides the Windows support(for Linux/OS X only folks)?
Re: Rotz: Cross platform dotfile manager written in Rust
#8Oh neat. It seems useful to manage this through a CLI tool! I wonder if something like this can build in protections for common dot file mistakes like accidentally committing API keys in one’s dot files?
Nice idea!
Re: Rotz: Cross platform dotfile manager written in Rust
#9Oh neat. It seems useful to manage this through a CLI tool! I wonder if something like this can build in protections for common dot file mistakes like accidentally committing API keys in one’s dot files? Nice idea!
You can put something like detect-secrets[1] in a commit hook.
no_secrets=$(git diff --staged --name-only -z | xargs -0 detect-secrets-hook --baseline .secrets.baseline)
test -z $no_secrets && exit $no_secrets
1: https://github.com/Yelp/detect-secretsRe: Rotz: Cross platform dotfile manager written in Rust
#10Reminds me of my own project, Comtrya
One of our goals is to run anywhere too, we have support for BSD as well as Windows, macOS, and Linux; as well as first class variant support for "define once, run everywhere" functionality.
Our core lib is available and built to support other dot file managers, perhaps it could be useful to you.