BADM is "But Another Dotfiles Manager".
NOTE: Windows is currently not supported as of this time.
BADM moves files to the set dotfiles directory, replicating the file structure of the file's original location, and then replacing the file at the original location with a symlink to the stored dotfile.
If our user ferris has a file directory similar to below and would like to store their .gitconfig file as a dotfile:
home └── ferris └── .gitconfig
By running badm set-dir ~/.dotfiles
they first create and set the location to store dotfiles.
home └── ferris ├── .dotfiles └── .gitconfig
Then by using badm stow ~/.gitconfig
or badm stow .gitconfig
if ferris's current directory is /home/ferris, two things will happen:
1. BADM will replicate the file path of the .gitconfig file in the .dotfiles directory and move the .gitconfig file there. This allows for an easily and replicable way to deal with dotfiles across multiple systems.
2. BADM will then create a symlink of the .gitconfig file at its original source location which points to the stored .gitconfig dotfile.
home └── ferris ├── .dotfiles │ └── home │ └── ferris │ └── .gitconfig └── .gitconfig -> .dotfiles/home/ferris/.gitconfig
badm set-dir <DIRECTORY>
- set dotfiles directory location, if the location is not created BADM has the ability to create one for youbadm stow <FILE>
- store a file in the dotfiles directory, create a symlink at the original source of the stowed file.
badm rollout <FILE>
- for new configurations, create symlinks in directories relative to the dotfile's directory hierarchy. Directories to replicate the stored dotfile's directory structure will be created if not found.badm remove <FILE>
- remove the stored file from the dotfiles directory and replace the symlink with the original file.This project is made available under the MIT license. See the LICENSE file for more information.