3 #fix permissions from git (should probably move this to git hook)
4 chmod go= base/.zshenv base/.Xresources
6 for x in `find "$PWD/base" -mindepth 1 -maxdepth 1`; do
7 ln -vwis "$x" "$HOME/`basename $x`"
9 for x in `find "$PWD/xdg" -mindepth 1 -maxdepth 1`; do
10 ln -vwis "$x" "${XDG_CONFIG_HOME:-$HOME/.config}/`basename $x`"
12 touch "$HOME/.hushlogin"
14 #FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
15 #so it needs to be compiled and unlinked for it to actually take effect.