Dotfiles for different machines on different branches.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
832 B

1 year ago
9 months ago
9 months ago
9 months ago
1 year ago
  1. # .dotfiles
  2. My Arch Linux dotfiles. Most of them are personalized variants of the LARBS dotfiles.
  3. ## Required and Recommended Software
  4. All requirements and recommendations get installed by my version of LARBS.
  5. ## Migration of my dotfiles to other system
  6. ### set alias in .bashrc
  7. ```alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'```
  8. ### clone this repository
  9. ```git clone --bare https://github.com/TiynGER/.dotfiles $HOME/.dotfiles```
  10. ### checkout changes
  11. ```config checkout```
  12. ### backup old files
  13. ```mkdir -p .config-backup && \
  14. config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
  15. xargs -I{} mv {} .config-backup/{}
  16. ```
  17. ### checkout changes
  18. ```config checkout```
  19. ### set showUntrackedFiles to no
  20. ```config config --local status.showUntrackedFiles no```
  21. ### pull current setup
  22. ```config pull```