Add deployment script for distro agnostic dotfiles

This commit is contained in:
caem 2024-07-30 22:43:33 +02:00
parent ccac03f685
commit 862e544a71
Signed by: caem
GPG key ID: 69A830D03203405F
2 changed files with 7 additions and 1 deletions

6
dotfiles/deploy.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
for f in *; do
[ -d "$f" ] && ln -svf "$PWD/$f" "$HOME/.config"
done