A Huge WIP... Infact most of it doesn't work so don't bother downloading yet 😂 It'll get there eventually 🤦
The idea behind this was to be able to manage and reinstall a config or profile from where ever you were in the file tree. For example ```sh ls ~/
~/Dotfiles ~/dev pwd ~/dev/supercool-project/
dotsy config -i neovim
```
Getting started on a new machine would theoretically be as simple as running this after cloning your dotfiles ```sh cargo install dotsy dotsy init
dotsy profile -i
dotsy profile -i <profile-name/'s'>
dotsy profile -u <profile-name/'s'>
dotsy config -i <config-name/'s>
dotsy config -u <config-name/'s>
dotsy config ls
dotsy profile ls
Everything will be optional
json
{
"description": "Test config",
"links": [{ "from": "./test", "to": "~/test" }],
"directories": ["~/Test-Dir"],
"packages": ["npm"],
"shell": ["npm i test"],
"revert-shell": ["npm uninstall test"]
}
Everything but configs will be optional
json
{
"description": "Test profile",
"configs": ["test-config"],
"directories": ["~/Documents"],
"packages": ["nvim"],
"shell": ["npm i test"],
"revert-shell": ["npm uninstall test"]
}