dotfiles/dotfiles.sh
2022-04-18 08:17:08 -04:00

4 lines
99 B
Bash
Executable file

#!/bin/bash
for conf in $(ls dotfiles); do
ln -sn $PWD/dotfiles/$conf $HOME/.config/$conf
done