]> git.sev.monster Git - dotfiles.git/blame - install.sh
remove tint2 battery alert, zsh dotfiles vcs check
[dotfiles.git] / install.sh
CommitLineData
189288f7 1#!/bin/sh
d9362f34 2
9938f1e2 3if [ 0 -eq 1 ]; then
4 alias mkdir="echo mkdir"
5 alias ln="echo ln"
6 alias rm="echo rm"
7 alias cap_mkdb="echo cap_mkdb"
8 alias unlink="echo unlink"
9fi
10
5b39422d 11#fix permissions from git (TODO: should probably move this to git hook)
12chmod go= base/.zshenv base/.Xresources
13
14#create preferred folder structure
15cd "$HOME"
16mkdir -p bin etc share .urxvt/ext > /dev/null 2>&1
17mkdir -m 700 tmp tmp/vim > /dev/null 2>&1
18cd -
19
9938f1e2 20l() {
f29cd560 21 # TODO: use install?
de6b1600 22 [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "${2:-$x}" "$1"
9938f1e2 23}
24
25find "$PWD/base" -depth 1 | while read -r x; do
26 l "$HOME/`basename "$x"`"
27done
de6b1600 28find bin share -depth 1 | while read -r x; do
29 l "$HOME/$x" "$PWD/$x"
f29cd560 30done
9938f1e2 31find "$PWD/xdg" -depth 1 | while read -r x; do
32 l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
7f0acd88 33done
9938f1e2 34find "$PWD/urxvt-ext" -type f -perm -ugo=x -mindepth 1 -maxdepth 2 | while read -r x; do
35 l "$HOME/.urxvt/ext/`basename $x`"
805ce2dc 36done
bd6360b9 37touch "$HOME/.hushlogin"
7f0acd88 38
39bd5e00 39#FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
40#so it needs to be compiled and unlinked for it to actually take effect.
d9362f34 41cd "$HOME"
39bd5e00 42rm .login_conf.db
43cap_mkdb .login_conf
44unlink .login_conf
d9362f34 45cd -
This page took 0.051038 seconds and 4 git commands to generate.