Save and deploy your dotfiles on any git version control system like Codeberg.
Go to file
Santiago Lo Coco b10bbd72c7
Add no-push feature in the update script
2025-01-27 23:15:08 +01:00
scripts Add no-push feature in the update script 2025-01-27 23:15:08 +01:00
templates Add more validations 2021-12-26 19:40:13 -03:00
.gitignore Update .gitignore 2022-02-15 23:34:36 -03:00
LICENSE.md Update LICENSE.md 2022-01-11 18:36:15 -03:00
README.md Update hyperlinks 2023-10-06 23:17:28 -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@git.slc.ar:slococo/sadedot.git
git submodule update --init

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

Usage

You have to move all your dotfiles to a folder named dotfiles (see my repo for an example) and then the script will do the symbolic links. Doing it this way, you can now push them to your git repo (so you have a backup of them).

You should note that all of 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 dialog. However, the script can use either dialog or whiptail (libnewt) as a way to display dialog boxes, so if you want to use whiptail, you must use -w as a parameter.

Also, for compatibility reasons, the script will choose not to use dialog or whiptail if you don't have them installed. You can force this using the -t parameter.

Finally, you can run the script with -l if you want to print the log to the sadedot.log file (it will be created inside the sadedot folder).

Note that you can add shell scripts to a folder named scripts (see my repo) if you want to run them when scripts/bootstrap.sh is run. By default, it will not run these scripts, so you must use the -p flag (they will run at the end).

As an example, I will show my repo directories in a tree-like format (note that the folder named sadedot is this repository as a submodule):

.
├── dotfiles
│   └── ...
├── sadedot
│   └── ...
└── scripts
    └── ...

Optional dependencies

You can install dialog (recommended) or libnewt for a better experience, but they are not required.

Updating

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

git submodule foreach git pull

Contributing

PRs are welcome.

License

MIT