1
0
Fork 0

README: how to copy files to ~/

This commit is contained in:
Pratham Patel 2022-10-04 21:13:48 +05:30
parent a238c7b482
commit 0a2fba3e30
1 changed files with 10 additions and 0 deletions

View File

@ -3,3 +3,13 @@
Initial setup:
- `git clone git@git.thefossguy.com:thefossguy/dotfiles-priv.git`
- Uncomment the most appropriate line in `~/.config/alacritty/alacritty.yml`, under `import` (line 11)
Copy files using the following command:
```
rsync \
--verbose --recursive --size-only --human-readable \
--progress --stats \
--itemize-changes --checksum \
--exclude=".git" --exclude=".gitignore" --exclude="README.md" \
../dotfiles/ ~/ --dry-run
```