]> git.sev.monster Git - dotfiles.git/blame - install.sh
add mpc-notify
[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
138de127 20#accomodate linuxisms
21fex='-perm -ugo=x'
364338b5 22# TODO: should probably do this better
23case "`uname`" in
24 *BSD*) lnargs=-sFhvw
138de127 25 d1='-depth 1'
26 bsd=yes;;
27 *) lnargs=-sfnv
28 d1='-mindepth 1 -maxdepth 1'
29 #android busybox find doesn't have -execute
30 #and its sh doesn't set OSTYPE :DD
31 if [ -z "$ANDROID_ROOT" ]; then
32 fex=-executable
33 fi;;
34esac
35
9938f1e2 36l() {
f29cd560 37 # TODO: use install?
138de127 38 [ -L "$1" -o \! -e "$1" ] && ln $lnargs "${2:-$x}" "$1"
9938f1e2 39}
40
138de127 41find "$PWD/base" $d1 | while read -r x; do
9938f1e2 42 l "$HOME/`basename "$x"`"
43done
138de127 44find bin share $d1 | while read -r x; do
de6b1600 45 l "$HOME/$x" "$PWD/$x"
f29cd560 46done
138de127 47find "$PWD/xdg" $d1 | while read -r x; do
48 l "${XDG_CONFIG_HOME:-$HOME/etc}/`basename "$x"`"
7f0acd88 49done
138de127 50find "$PWD/urxvt-ext" -type f $fex -mindepth 1 -maxdepth 2 | while read -r x; do
9938f1e2 51 l "$HOME/.urxvt/ext/`basename $x`"
805ce2dc 52done
7f0acd88 53
138de127 54cd ~
55if [ -n "$bsd" ]; then
56 touch .hushlogin
57
58 #FreeBSD tries `_secure_path' on `.login_conf' before reading the database,
59 #so it needs to be compiled and unlinked for it to actually take effect.
60 rm .login_conf.db
61 cap_mkdb .login_conf
62fi
39bd5e00 63unlink .login_conf
d9362f34 64cd -
This page took 0.045845 seconds and 4 git commands to generate.