#!/bin/sh
-#fix permissions from git (should probably move this to git hook)
+#fix permissions from git (TODO: should probably move this to git hook)
chmod go= base/.zshenv base/.Xresources
if [ 0 -eq 1 ]; then
fi
l() {
+ # TODO: use install?
[ -L "$1" -o \! -e "$1" ] && ln -sFhvw "$x" "$1"
}
find "$PWD/base" -depth 1 | while read -r x; do
l "$HOME/`basename "$x"`"
done
+mkdir "$HOME/bin"
+find "$PWD/bin" -depth 1 | while read -r x; do
+ l "$HOME/bin/`basename "$x"`"
+done
find "$PWD/xdg" -depth 1 | while read -r x; do
l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
done