dotfiles/bin/dotfiles.sh
2022-07-30 14:46:12 -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