- 👾 Make Config More universal
- 📜 Create Install script for dependencies and other things
- 🌈 Extend theme support for Doom Emacs
- 🖥️ Add theme for greeter (SDDM & greetd)
- 💻 Add theme for Bash and Zsh
Chezmoi is the dotfiles manager used in this project.
apk add chezmoi
sudo pacman -S chezmoi
nix-env -i chezmoi
More ways to install, and other info can be found here:
https://www.chezmoi.io/install/
To backup all dotfiles:
mkdir ~/dotfiles_backup
cp -r ~/.* ~/dotfiles_backup
OR to just backup your .config folder:
cp -r ~/.config/* ~/dotfiles_backup
chezmoi init https://github.com/Ssnibles/dotfiles.git
This will clone the repo into the Chezmoi source directory (usually found at: ~/.local/share/chezmoi)
chezmoi diff
chezmoi apply -v
chezmoi update -v
📌 Additional notes:
- The -v flag in the commands above enables verbose output, which can be helpful for seeing what changes are being made.
- You can use
chezmoi edit
to make changes to your dotfiles through Chezmoi. - If you make changes directly to your dotfiles, use
chezmoi re-add
to update Chezmoi's source state.