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

8 lines
150 B
Bash
Executable file

#!/usr/bin/env bash
cd ~
for d in dotfiles/.config/*
do
APP_NAME=$(basename $d)
ln -sfn "/home/$USER/$d" "/home/$USER/.config/$APP_NAME"
done