X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/d9362f346f3609007060bdec8ab6691a5537b0ad..ed1770755a75601a875f9b7ab2bb655782663273:/install.sh diff --git a/install.sh b/install.sh index 0befa7c..05715db 100755 --- a/install.sh +++ b/install.sh @@ -1,10 +1,38 @@ #!/bin/sh -#fix permissions from git (should probably move this to git hook) +if [ 0 -eq 1 ]; then + alias mkdir="echo mkdir" + alias ln="echo ln" + alias rm="echo rm" + alias cap_mkdb="echo cap_mkdb" + alias unlink="echo unlink" +fi + +#fix permissions from git (TODO: should probably move this to git hook) chmod go= base/.zshenv base/.Xresources -for x in `find "$PWD/base" -mindepth 1 -maxdepth 1`; do - ln -vwis "$x" "$HOME/`basename $x`" +#create preferred folder structure +cd "$HOME" +mkdir -p bin etc share .urxvt/ext > /dev/null 2>&1 +mkdir -m 700 tmp tmp/vim > /dev/null 2>&1 +cd - + +l() { + # 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 +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 +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 touch "$HOME/.hushlogin"