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.

25 lines
981 B

1 year ago
9 months 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. To take a look at all the software it installs look at the progs.csv in my LARBS repository (https://github.com/TiynGER/larbs/blob/master/progs.csv)
  6. ## Migration of my dotfiles to other system
  7. ### set alias in .bashrc
  8. ```alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'```
  9. ### clone this repository
  10. ```git clone --bare https://github.com/TiynGER/.dotfiles $HOME/.dotfiles```
  11. ### checkout changes
  12. ```config checkout```
  13. ### backup old files
  14. ```mkdir -p .config-backup && \
  15. config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
  16. xargs -I{} mv {} .config-backup/{}
  17. ```
  18. ### checkout changes
  19. ```config checkout```
  20. ### set showUntrackedFiles to no
  21. ```config config --local status.showUntrackedFiles no```
  22. ### pull current setup
  23. ```config pull```