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.

27 lines
1.1 KiB

1 year ago
9 months ago
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.
  3. They were originally based on the dotfiles of [lukesmithxyz](https://github.com/lukesmithxyz/voidrice).
  4. This being some time, hundreds of commits and my personalized version of [larbs](https://github.com/TiynGER/larbs) ago, they are now quite different.
  5. ## Required and Recommended Software
  6. All requirements and recommendations get installed by my version of LARBS.
  7. 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)
  8. ## Migration of my dotfiles to other system
  9. ### set alias in .bashrc
  10. ```alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'```
  11. ### clone this repository
  12. ```git clone --bare https://github.com/TiynGER/.dotfiles $HOME/.dotfiles```
  13. ### checkout changes
  14. ```config checkout```
  15. ### backup old files
  16. ```mkdir -p .config-backup && \
  17. config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
  18. xargs -I{} mv {} .config-backup/{}
  19. ```
  20. ### checkout changes
  21. ```config checkout```
  22. ### set showUntrackedFiles to no
  23. ```config config --local status.showUntrackedFiles no```
  24. ### pull current setup
  25. ```config pull```