BADM

GitHub Actions workflow status

BADM is "But Another Dotfiles Manager".

NOTE: Windows is currently not supported as of this time.

How it Works

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.

Example Workflow

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

Commands

Roadmap

License

This project is made available under the MIT license. See the LICENSE file for more information.

See Also