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