]> git.sev.monster Git - dotfiles.git/blobdiff - install.sh
fixed .login_conf, tint2, added ssh-agent, colors
[dotfiles.git] / install.sh
index 2302890524849e1aa19fc2fb5a2e1557b855fc99..5ac2fae08d3b897c895764655dcd2525c86d6a09 100755 (executable)
@@ -1,5 +1,16 @@
 #!/bin/sh
 #!/bin/sh
-d="$HOME/.dotfiles"
-for x in .*; do ln -vwis "$d/$x" "$HOME/$x"; done
-ln -vwis "$d/i3-config" "$HOME/.config/i3/config"
-ln -vwis "$d/i3status-config" "$HOME/.config/i3status/config"
+for x in `find "$PWD" -mindepth 1 -maxdepth 1 \! \( -name '.git' -name 'install.sh' \) -name '.*'`; do
+       ln -vwis "$x" "$HOME/`basename $x`"
+done
+ln -vwis "$PWD/i3-config" "$HOME/.config/i3/config"
+ln -vwis "$PWD/i3status-config" "$HOME/.config/i3status/config"
+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.
+rm .login_conf.db
+cap_mkdb .login_conf
+unlink .login_conf
This page took 0.074672 seconds and 4 git commands to generate.