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
903 B

5 years ago
# .dotfiles
5 years ago
My Arch Linux dotfiles. Most of them are personalized variants of the LARBS dotfiles files.
5 years ago
## Migration of my dotfiles to other system
5 years ago
### set alias in .bashrc
5 years ago
```alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'```
5 years ago
### clone this repository
5 years ago
```git clone --bare https://github.com/TiynGER/.dotfiles $HOME/.dotfiles```
5 years ago
### checkout changes
5 years ago
```config checkout```
5 years ago
### backup old files
5 years ago
```mkdir -p .config-backup && \
5 years ago
config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
5 years ago
xargs -I{} mv {} .config-backup/{}
```
5 years ago
### checkout changes
5 years ago
```config checkout```
5 years ago
### set showUntrackedFiles to no
5 years ago
```config config --local status.showUntrackedFiles no```
5 years ago
### pull current setup
5 years ago
```config pull```
5 years ago
## baseinstallation.sh
This is a shell-script for setting up the most important programs in my opinion after the basic setup of Arch and the set-up done by LARBS by Luke Smith.