12 lines
312 B
Bash
12 lines
312 B
Bash
SRC=$HOME/.dotfilesrepo
|
|
rm $HOME/.bashrc
|
|
rm $HOME/.profile
|
|
ln -sf $SRC/.bashrc $HOME/.bashrc
|
|
ln -sf $SRC/.vimrc $HOME/.vimrc
|
|
ln -sf $SRC/.profile $HOME/.profile
|
|
ln -sf $SRC/.config $HOME/.config
|
|
ln -sf $SRC/bin $HOME/bin
|
|
|
|
mkdir -p $HOME/.local/share/fonts
|
|
cp $SRC/.local/share/fonts/* $HOME/.local/share/fonts/.
|