X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/821519016af1834f362213a6de807276311981d4..2a766e9276a350683c2703f7b99c69397525c0d0:/install.sh?ds=sidebyside diff --git a/install.sh b/install.sh index 4ced505..eb1366a 100755 --- a/install.sh +++ b/install.sh @@ -1,13 +1,34 @@ #!/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 -for x in `find "$PWD/base" -mindepth 1 -maxdepth 1`; do - ln -vwis "$x" "$HOME/`basename $x`" +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 + +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 +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 -for x in `find "$PWD/xdg" -mindepth 1 -maxdepth 1`; do - ln -vwis "$x" "${XDG_CONFIG_HOME:-$HOME/.config}/`basename $x`" +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 touch "$HOME/.hushlogin"