summaryrefslogtreecommitdiff
path: root/install.sh
blob: 9c881878eb109102bf652dbd294f56721d9b4a3e (plain)
1
2
3
4
5
6
7
#!/bin/sh
# Installs my dotfiles on a new system

for f in $(find . -maxdepth 1 ! -name ".git" -name ".[^.]*"); do
        rm -rf $HOME/$f
        ln -s $HOME/repositories/dotfiles/$f $HOME/$f
done