]> git.sev.monster Git - dotfiles.git/blame - install.sh
added ssh display to zsh title, made VICOL strict
[dotfiles.git] / install.sh
CommitLineData
189288f7 1#!/bin/sh
d9362f34 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
7f0acd88 7 ln -vwis "$x" "$HOME/`basename $x`"
8done
bd6360b9 9touch "$HOME/.hushlogin"
7f0acd88 10
39bd5e00 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.
d9362f34 13cd "$HOME"
39bd5e00 14rm .login_conf.db
15cap_mkdb .login_conf
16unlink .login_conf
d9362f34 17cd -
This page took 0.039835 seconds and 4 git commands to generate.