]> git.sev.monster Git - dotfiles.git/blob - install.sh
do not hardcode /tmp in .zprofile
[dotfiles.git] / install.sh
1 #!/bin/sh
2
3 #NOTE: .zshenv XDG paths are hardcoded to allow non-zsh install
4
5 # test
6 devnull=/dev/null
7 if [ "$1" = "test" ]; then
8         echo "Running test -- no changes will be applied"
9         devnull=/dev/stdout
10         _cd() {
11                 cd $*;
12                 echo "  cd $*";
13                 echo "\$PWD=$PWD";
14         }
15         alias cd="_cd"
16         alias mkdir="echo mkdir"
17         alias ln="echo ln"
18         alias rm="echo rm"
19         alias sh="echo sh"
20 fi
21
22 # create preferred folder structure
23 cd ~
24 mkdir -p bin etc share share/fonts .urxvt/ext .icons .themes >$devnull 2>&1
25 mkdir -pm 700 var/tmp var/tmp/vim >$devnull 2>&1
26 cd - >$devnull
27
28 # ensure ostype
29 if [ -z "$OSTYPE" ]; then
30         OSTYPE=`uname -s | tr '[:upper:]' '[:lower:]'`
31 fi
32
33 # accomodate multiple userlands
34 lnargs=-sfnv
35 case "$OSTYPE" in
36         freebsd*)               lnargs=-sFhv;;
37         netbsd|openbsd*)        lnargs=-sfhv;;
38 esac
39
40 l() {
41         # TODO: use install?
42         [ -L "$1" -o \! -e "$1" ] && ln $lnargs "${2:-$PWD/$x}" "$1" || \
43                 echo "!!! File exists and is not a link: $1"
44 }
45
46 # link files
47 find base -mindepth 1 -maxdepth 1 | while read -r x; do
48         l "$HOME/`basename "$x"`"
49 done
50 # requires existing source tree and `make dabuild`
51 for x in dabuild dabuild-admin; do
52         x="$HOME/src/docker-abuild/$x"
53         if [ -e "$x" ]; then
54                 l "$HOME/bin/`basename "$x"`" "$x"
55         fi
56 done
57 find bin share -mindepth 1 -maxdepth 1 | while read -r x; do
58         l "$HOME/$x"
59 done
60 find xdg -mindepth 1 -maxdepth 1 | while read -r x; do
61         l "$HOME/etc/`basename "$x"`"
62 done
63 find urxvt-ext -mindepth 1 -maxdepth 2 -type f -perm -111 | while read -r x; do
64         l "$HOME/.urxvt/ext/`basename $x`"
65 done
66 find xorg/icons -mindepth 1 -maxdepth 2 -type d | while read -r x; do
67         if [ -e "$x/index.theme" ]; then
68                 d="$HOME/.icons/`basename "$x"`"
69                 l $d
70                 which gtk-update-icon-cache >/dev/null 2>&1 && gtk-update-icon-cache -qtf $d
71                 unset d
72         fi
73 done
74 find xorg/themes -mindepth 1 -maxdepth 1 -type d | while read -r x; do
75         l "$HOME/.themes/`basename "$x"`"
76 done
77 find fonts -mindepth 1 -maxdepth 1 -type d | while read -r x; do
78         l "$HOME/share/fonts/`basename "$x"`"
79 done
80 #XXX: potential bug with newlines in profile name (if ff even takes it)
81 #XXX: only uses first profile folder, read from profiles.ini
82 ffdir="`find "$HOME/.mozilla/firefox" -mindepth 1 -maxdepth 1 -type d | head -1 2>$devnull`"
83 if [ -d "$ffdir" ]; then
84         find firefox -mindepth 1 -maxdepth 1 | while read -r x; do
85                 l "$ffdir/`basename "$x"`"
86         done
87         cd "$ffdir"
88         echo "Updating user.js"
89         sh ./user-js-updater.sh
90         cd - >$devnull
91 fi
92
93 # run .zprofile to set up tmp
94 # .zprofile also sources .zshenv for compatibility
95 zsh ~/.zprofile
This page took 0.045369 seconds and 4 git commands to generate.