]> git.sev.monster Git - dotfiles.git/blame - install.sh
fix .Xresources, revert colorUL
[dotfiles.git] / install.sh
CommitLineData
1b8a4102 1#!/bin/sh
04ff96a4 2for x in `find "$PWD" -mindepth 1 -maxdepth 1 \! \( -name '.git' -name 'install.sh' \) -name '.*'`; do
3 ln -vwis "$x" "$HOME/`basename $x`"
4done
5ln -vwis "$PWD/i3-config" "$HOME/.config/i3/config"
6ln -vwis "$PWD/i3status-config" "$HOME/.config/i3status/config"
e969e1c2 7touch "$HOME/.hushlogin"
04ff96a4 8
ee4bf66d 9#fix permissions from git (should probably move this to git hook)
04ff96a4 10chmod go= .zshenv .Xresources
ee4bf66d 11#
12#FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
13#so it needs to be compiled and unlinked for it to actually take effect.
14rm .login_conf.db
15cap_mkdb .login_conf
16unlink .login_conf
This page took 0.048466 seconds and 4 git commands to generate.