]> git.sev.monster Git - dotfiles.git/blob - install.sh
complete previous commit
[dotfiles.git] / install.sh
1 #!/bin/sh
2
3 #NOTE: .zshenv XDG paths are hardcoded to allow non-zsh install
4
5 # test
6 if [ "$1" = "test" ]; then
7         mkdir() { echo -- "$*"; }
8         alias ln="echo ln"
9         alias rm="echo rm"
10         alias cap_mkdb="echo cap_mkdb"
11         alias unlink="echo unlink"
12 fi
13
14 # create preferred folder structure
15 cd ~
16 mkdir -p bin etc share share/fonts .urxvt/ext .icons .themes > /dev/null 2>&1
17 mkdir -pm 700 var/tmp var/tmp/vim > /dev/null 2>&1
18 cd -
19
20 # accomodate multiple userlands
21 fex='-perm -ugo=x'
22 lnargs=-sfnv
23 if [ -z "$OSTYPE" ]; then
24         OSTYPE=`uname -s | tr '[:upper:]' '[:lower:]'`
25 fi
26 case "$OSTYPE" in
27         # TODO: make links safer for systems without -Fw
28         freebsd*)               lnargs=-sFhvw;;
29         netbsd|openbsd*)        lnargs=-sfhv;;
30         # android busybox find doesn't have -executable
31         android)                fex=-executable;;
32 esac
33
34 l() {
35         # TODO: use install?
36         [ -L "$1" -o \! -e "$1" ] && ln $lnargs "${2:-$x}" "$1"
37 }
38
39 # link files
40 find "$PWD/base" -mindepth 1 -maxdepth 1 | while read -r x; do
41         l "$HOME/`basename "$x"`"
42 done
43 find bin share -mindepth 1 -maxdepth 1 | while read -r x; do
44         l "$HOME/$x" "$PWD/$x"
45 done
46 find "$PWD/xdg" -mindepth 1 -maxdepth 1 | while read -r x; do
47         l "$HOME/etc/`basename "$x"`"
48 done
49 find "$PWD/urxvt-ext" -type f $fex -mindepth 1 -maxdepth 2 | while read -r x; do
50         l "$HOME/.urxvt/ext/`basename $x`"
51 done
52 cd "$PWD/xorg"
53 for y in icons themes; do
54         find $y -type d -mindepth 2 -maxdepth 2 | while read -r x; do
55                 l "$HOME/.$y/`basename "$x"`" "$PWD/$x"
56         done
57 done
58 cd -
59 find "$PWD/xorg/fonts" -type d -mindepth 1 -maxdepth 1 | while read -r x; do
60         l "$HOME/share/fonts/`basename "$x"`"
61 done
62
63 cd ~
64 if [ "$OSTYPE" = "freebsd" ]; then
65         # FreeBSD tries `_secure_path' on `.login_conf' before reading the
66         # database, so it needs to be compiled and unlinked for it to actually
67         # take effect.
68         rm .login_conf.db
69         cap_mkdb .login_conf
70 fi
71 unlink .login_conf
72 # run .zprofile to set up tmp
73 zsh .zprofile
74 cd -
This page took 0.039288 seconds and 4 git commands to generate.