Your dotfiles are how you personalize your system. These are mine.
Maintaining dotfiles for your computer is crucial for several reasons. Firstly, it ensures consistency across different machines, allowing you to replicate your preferred settings, shortcuts, and configurations effortlessly. This consistency saves time and frustration when transitioning between workstations or setting up a new system. Secondly, dotfiles serve as a personal backup of your customized environment. By version-controlling them with tools like Git, you not only safeguard against accidental changes but also enable easy restoration in case of system crashes or upgrades.
To set up the dotfiles run the appropriate snippet in the terminal.
MacOS
bash -c "$(curl -fsLS https://raw.githubusercontent.com/pragmaticivan/dotfiles/main/setup.sh)"
Ubuntu
bash -c "$(wget -qO - https://raw.githubusercontent.com/pragmaticivan/dotfiles/main/setup.sh)"
The following is a minimal setup command to install chezmoi and my dotfiles from the github repository on a new empty machine:
sh -c "$(curl -fsLS get.chezmoi.io)" -- init pragmaticivan --apply
Updating and testing the dotfiles follows chezmoi's daily operations. To verify that the updated scripts work correctly, run the scripts on the actual local machine and on the docker container.
Test the executation of the setup scripts on Ubuntu in its initial state. The following command will launch the test environment using Docker π³.
make docker-dev
# docker run -it -v "$(pwd):/home/$(whoami)/.local/share/chezmoi" dotfiles /bin/bash --login
# pragmaticivan@6f97d279cb51:~$
Run the chezmoi init --apply
command to verify that the system is set up correctly.
pragmaticivan@5f93d270cb51:~$ chezmoi init --apply
Test the shellscript for setup with Bash Automated Testing System (bats).
The scripts for the unit test can be found under ./tests
directory.
Inspiration and code was taken from many sources, including:
The code is available under the MIT license.