13 lines
418 B
Bash
13 lines
418 B
Bash
## Tobias Bobban Rydh - 2023
|
|
|
|
#Creating dotfiles download folder
|
|
mkdir $home/dotfiles
|
|
|
|
#Cloning down repository with dotfiles
|
|
git clone git@gitssh.labsconnect.se:bobban/dotfiles.git $home/dotfiles
|
|
|
|
#Installing dotfiles in correct configration folders
|
|
cp ~/dotfiles/.bashrc ~/.bashrc
|
|
cp ~/dotfiles/.config/starship.toml ~/.config/starship.toml
|
|
cp ~/dotfiles/.config/neofetch/config.conf ~/.config/neofetch/config.conf
|