#!/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() {
- [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "$x" "$1"
+ # TODO: use install?
+ [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "${2:-$x}" "$1"
}
find "$PWD/base" -depth 1 | while read -r x; do
l "$HOME/`basename "$x"`"
done
+mkdir "$HOME/bin" "$HOME/share" > /dev/null 2>&1
+find bin share -depth 1 | while read -r x; do
+ l "$HOME/$x" "$PWD/$x"
+done
find "$PWD/xdg" -depth 1 | while read -r x; do
l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
done
-mkdir -p "$HOME/.urxvt/ext"
+mkdir -p "$HOME/.urxvt/ext" > /dev/null 2>&1
find "$PWD/urxvt-ext" -type f -perm -ugo=x -mindepth 1 -maxdepth 2 | while read -r x; do
l "$HOME/.urxvt/ext/`basename $x`"
done