Save and deploy your dotfiles on any git version control system like Codeberg.
Go to file
Santiago Lo Coco 9c1f31768d Remove debug in bootstrap.sh 2022-01-19 16:34:35 -03:00
scripts Remove debug in bootstrap.sh 2022-01-19 16:34:35 -03:00
templates Add more validations 2021-12-26 19:40:13 -03:00
.gitignore Readd .gitignore 2022-01-19 02:02:58 -03:00
LICENSE.md Update LICENSE.md 2022-01-11 18:36:15 -03:00
README.md Reorder sections in README.md 2022-01-19 15:52:15 -03:00

README.md

sadedot

Backup all your dotfiles (and easily deploy them on another machine).

Table of contents

Installation

This repo is supposed to be used as a submodule. So, if you already have a git repo with your dotfiles:

git submodule add git@github.com:santilococo/sadedot.git
git submodule update --init

And if you don't, you can fork my dotfiles repo on github.

Usage

You have to move all your dotfiles to the dotfiles folder and then the script will do the symbolic links. Doing it this way, you can now upload them to your repository (to have a backup of them).

You should note that all these dotfiles (files or folders) will be symlinked in $HOME. So, if you want to symlink, for example, something in /etc, you have to put it in the dotfiles/other folder. Here you have to be careful as they will be installed in /. You can see an example here.

So, to run the script:

sh scripts/bootstrap.sh

By default the script will run with whiptail (libnewt).

However, the script can use both dialog and whiptail as a way to display dialog boxes, so if you want to use dialog you have to pass -d as a parameter.

For example, you can run

sh scripts/bootstrap.sh -d

to use dialog.

Finally, you can run the script with -l if you want to print the log in the sadedot.log file.

Note that you can modify the scripts/install.sh if you want to install some programs on your machine when this script is run. By default, scripts/bootstrap.sh will not run this script, so you will need to use the -p flag if you want it to run scripts/install.sh (it will run at the end of the scripts/bootstrap.sh script).

Dependencies

You must install libnewt or dialog.

Updating

To keep the submodule up to date, you need to run

git submodule foreach git pull

Contributing

PRs are welcome.

License

MIT