4 alias mkdir="echo mkdir"
7 alias cap_mkdb="echo cap_mkdb"
8 alias unlink="echo unlink"
11 #fix permissions from git (TODO: should probably move this to git hook)
12 chmod go= base/.zshenv base/.Xresources
14 #create preferred folder structure
16 mkdir -p bin etc share .urxvt/ext > /dev/null 2>&1
17 mkdir -m 700 tmp tmp/vim > /dev/null 2>&1
22 [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "${2:-$x}" "$1"
25 find "$PWD/base" -depth 1 | while read -r x; do
26 l "$HOME/`basename "$x"`"
28 find bin share -depth 1 | while read -r x; do
29 l "$HOME/$x" "$PWD/$x"
31 find "$PWD/xdg" -depth 1 | while read -r x; do
32 l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
34 find "$PWD/urxvt-ext" -type f -perm -ugo=x -mindepth 1 -maxdepth 2 | while read -r x; do
35 l "$HOME/.urxvt/ext/`basename $x`"
37 touch "$HOME/.hushlogin"
39 #FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
40 #so it needs to be compiled and unlinked for it to actually take effect.