]> git.sev.monster Git - dotfiles.git/blob - install.sh
fixed zsh, renamed l -> lck, netbsd support
[dotfiles.git] / install.sh
1 #!/bin/sh
2
3 if [ 0 -eq 1 ]; then
4         mkdir() { echo "$*"; }
5         alias ln="echo ln"
6         alias rm="echo rm"
7         alias cap_mkdb="echo cap_mkdb"
8         alias unlink="echo unlink"
9 fi
10
11 #create preferred folder structure
12 cd ~
13 mkdir -p bin etc share .urxvt/ext > /dev/null 2>&1
14 mkdir -m 700 tmp tmp/vim > /dev/null 2>&1
15 cd -
16
17 #accomodate linuxisms
18 fex='-perm -ugo=x'
19 case "$OSTYPE" in
20         # TODO: make links safer for systems without -Fw
21         freebsd)        lnargs=-sFhvw;;
22         netbsd|openbsd) lnargs=-sfhv;;
23         *)              lnargs=-sfnv
24                         #android busybox find doesn't have -executable
25                         #and its sh doesn't set OSTYPE :DD
26                         if [ -z "$ANDROID_ROOT" ]; then
27                                 fex=-executable
28                         fi;;
29 esac
30
31 l() {
32         # TODO: use install?
33         [ -L "$1" -o \! -e "$1" ] && ln $lnargs "${2:-$x}" "$1"
34 }
35
36 find "$PWD/base" -mindepth 1 -maxdepth 1 | while read -r x; do
37         l "$HOME/`basename "$x"`"
38 done
39 find bin share -mindepth 1 -maxdepth 1 | while read -r x; do
40         l "$HOME/$x" "$PWD/$x"
41 done
42 find "$PWD/xdg" -mindepth 1 -maxdepth 1 | while read -r x; do
43         l "${XDG_CONFIG_HOME:-$HOME/etc}/`basename "$x"`"
44 done
45 find "$PWD/urxvt-ext" -type f $fex -mindepth 1 -maxdepth 2 | while read -r x; do
46         l "$HOME/.urxvt/ext/`basename $x`"
47 done
48
49 cd ~
50 if [ "$OSTYPE" = "freebsd" ]; then
51         touch .hushlogin
52
53         #FreeBSD tries `_secure_path' on `.login_conf' before reading the database,
54         #so it needs to be compiled and unlinked for it to actually take effect.
55         rm .login_conf.db
56         cap_mkdb .login_conf
57 fi
58 unlink .login_conf
59 cd -
This page took 0.039612 seconds and 4 git commands to generate.