]> git.sev.monster Git - dotfiles.git/blame_incremental - install.sh
remove .zshrc.swp
[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
9for x in `find "$PWD/xdg" -mindepth 1 -maxdepth 1`; do
10 ln -vwis "$x" "${XDG_CONFIG_HOME:-$HOME/.config}/`basename $x`"
11done
12touch "$HOME/.hushlogin"
13
14#FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
15#so it needs to be compiled and unlinked for it to actually take effect.
16cd "$HOME"
17rm .login_conf.db
18cap_mkdb .login_conf
19unlink .login_conf
20cd -
This page took 0.04025 seconds and 4 git commands to generate.