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