Initial commit

This commit is contained in:
Martin Pander
2020-09-10 09:54:18 +02:00
commit 03c7bc3c59
50 changed files with 7816 additions and 0 deletions

15
config/setup Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
for dotfiles in $SCRIPTDIR/*; do
dotfile=${dotfiles##*/}
if [[ $dotfile != "setup" ]]; then
if [[ ! -a $HOME/.$dotfile ]]; then
ln -s $SCRIPTDIR/$dotfile $HOME/.$dotfile
echo $dotfile "symlinked to" $HOME/.$dotfile
else
echo "already exists:" $HOME/.$dotfile
fi
fi
done