dotfiles/install
2023-11-01 21:32:11 -05:00

9 lines
227 B
Text
Executable file

cd ~
git clone https://git.gay/h/dotfiles dotfiles
ln -s "/home/$USER/dotfiles/.zshrc" "/home/$USER/.zshrc"
for d in dotfiles/.config/*
do
APP_NAME=$(basename $d)
ln -sfn "/home/$USER/$d" "/home/$USER/.config/$APP_NAME"
done