]> git.sev.monster Git - dotfiles.git/blobdiff - install.sh
fixed urxvt matcher url regex
[dotfiles.git] / install.sh
index 5ac2fae08d3b897c895764655dcd2525c86d6a09..05715dbb493782be28eddd5206e0ff623e353bf1 100755 (executable)
@@ -1,16 +1,45 @@
 #!/bin/sh
 #!/bin/sh
-for x in `find "$PWD" -mindepth 1 -maxdepth 1 \! \( -name '.git' -name 'install.sh' \) -name '.*'`; 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
+
+#fix permissions from git (TODO: should probably move this to git hook)
+chmod go= base/.zshenv base/.Xresources
+
+#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
 done
-ln -vwis "$PWD/i3-config" "$HOME/.config/i3/config"
-ln -vwis "$PWD/i3status-config" "$HOME/.config/i3status/config"
 touch "$HOME/.hushlogin"
 
 touch "$HOME/.hushlogin"
 
-#fix permissions from git (should probably move this to git hook)
-chmod go= .zshenv .Xresources
-#
 #FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
 #so it needs to be compiled and unlinked for it to actually take effect.
 #FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
 #so it needs to be compiled and unlinked for it to actually take effect.
+cd "$HOME"
 rm .login_conf.db
 cap_mkdb .login_conf
 unlink .login_conf
 rm .login_conf.db
 cap_mkdb .login_conf
 unlink .login_conf
+cd -
This page took 0.041063 seconds and 4 git commands to generate.