]> git.sev.monster Git - dotfiles.git/blobdiff - install.sh
urxvt perl extensions, Xresources changes
[dotfiles.git] / install.sh
index 4ced505139eb124b152e5c1e7c872dd6f83b8a32..e7a959be15befaa0cf0f7cbada6d9cdab6c1cc70 100755 (executable)
@@ -3,11 +3,27 @@
 #fix permissions from git (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() {
+       [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "$x" "$1"
+}
+
+find "$PWD/base" -depth 1 | while read -r x; do
+       l "$HOME/`basename "$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"
+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"
 
This page took 0.037545 seconds and 4 git commands to generate.